标题:[求助]包的小问题
只看楼主
gtrgtr
Rank: 1
等 级:新手上路
帖 子:58
专家分:0
注 册:2007-9-4
 问题点数:0 回复次数:4 
[求助]包的小问题

各位大哥大姐帮帮忙,我初学JAVA碰到问题!

package parent.child;

public class Location {
void disp(){
System.out.println("child子包中的Location类");
}
}


import parent.child.*; //导入子包
public class ParentTest {
ParentTest s1=new ParentTest();
// s1.disp();
}


请问我该如何调用子包中写的disp方法,不胜感激!!

搜索更多相关主题的帖子: color JAVA 
2007-11-16 22:41
天人和一
Rank: 1
等 级:新手上路
帖 子:137
专家分:0
注 册:2007-10-11
得分:0 

package parent.child;

public class wangluo {
void disp(){
System.out.println("child子包中的Location类");
}
}

package parent.child;
import parent.child.*; //导入子包
public class wangluo2 {
public static void main (String[] args) {

wangluo s1=new wangluo();
// s1.disp();
}

}

2007-11-16 22:58
gtrgtr
Rank: 1
等 级:新手上路
帖 子:58
专家分:0
注 册:2007-9-4
得分:0 
以下是引用天人和一在2007-11-16 22:58:03的发言:

package parent.child;

public class wangluo {
void disp(){
System.out.println("child子包中的Location类");
}
}

package parent.child;
import parent.child.*; //导入子包
public class wangluo2 {
public static void main (String[] args) {

wangluo s1=new wangluo();
// s1.disp();
}

}

我编译的时候出现这错误


[此贴子已经被作者于2007-11-16 23:13:09编辑过]

2007-11-16 23:12
天人和一
Rank: 1
等 级:新手上路
帖 子:137
专家分:0
注 册:2007-10-11
得分:0 

你把它们放在两个文件中啊

文件名必须与公共类同名啊!!】、

2007-11-17 12:09
天人和一
Rank: 1
等 级:新手上路
帖 子:137
专家分:0
注 册:2007-10-11
得分:0 



如果你在一个文件中就不用引用类了!!!
package parent.child;

public class wanglui3 {
void disp(){
System.out.println("child子包中的Location类");
}
}

class wangluo2 {
public static void main (String[] args) {

wanglui3 s1=new wanglui3();
s1.disp();
}

}
文件名为wanglui3.java

2007-11-17 12:19



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-186606-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.881875 second(s), 9 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved