免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 5874 | 回复: 14
打印 上一主题 下一主题

不在任何包中的class怎么import啊? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-02-21 23:55 |只看该作者 |倒序浏览
例如, 先创建一个类, 不在任何包中

public class A {
...
}

然后创建一个包,例如com.test, 在创建一个类, 例如
package com.test;
public class B {
     A a;
     ...
}

现在的问题是怎么把A import 到B中去,
原来以为import A;就可以, 结果出现编译错误。

论坛徽章:
0
2 [报告]
发表于 2008-02-22 15:31 |只看该作者
可以继承类A    还可以自己建一个包来包含A   因为正式的系统或者项目一个类肯定会在一个特定包里的。。

论坛徽章:
0
3 [报告]
发表于 2008-02-22 16:31 |只看该作者
搞定了, jdk1.3支持import A;
jdk1.4以上就不支持了

论坛徽章:
0
4 [报告]
发表于 2008-02-22 17:07 |只看该作者

论坛徽章:
0
5 [报告]
发表于 2008-02-25 18:06 |只看该作者

maybe don't need to be imported

As I've read from http://java.sun.com/docs/books/tutorial/java/package/usepkgs.html
"...For convenience, the Java compiler automatically imports three entire packages for each source file: (1) the package with no name, (2) the java.lang package, and (3) the current package (the package for the current file)....".

So you maybe don't need to import such classes. Just use directly in other classes like the classes in the package java.lang.

I've not tested it. If you have tested it, please let me know the result.

论坛徽章:
0
6 [报告]
发表于 2008-02-27 01:53 |只看该作者

回复 #5 leonbao 的帖子

试过了, 不行

论坛徽章:
0
7 [报告]
发表于 2008-03-02 09:51 |只看该作者
沒有包名是不規范的寫法,建議不要寫沒有包的類。
試想如果都沒有包名,成千上万個類在根目錄。你怎麼找呀。

论坛徽章:
0
8 [报告]
发表于 2008-03-03 14:56 |只看该作者

回复 #7 linpay2000 的帖子

那些烂代码不是我写的,我只是需要引用, 郁闷。。。

论坛徽章:
0
9 [报告]
发表于 2008-03-06 17:12 |只看该作者
先不说无包名是否是否合适,针对这个问题

你的应用classpath=c:\test\classes
部分应用的包路径为 com.test.a
假设 com.test.a.A.class 中需要应用无包名的 b.class,只需要将b.class放在classpath下就行了
何用什么 import

论坛徽章:
0
10 [报告]
发表于 2008-03-07 12:04 |只看该作者
默认无名包无法导入
至于楼上说1.3以前可以就不清楚了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP