当前位置: 技术问答>java相关
关于自定义包的问题?请高手指教。
来源: 互联网 发布时间:2015-01-26
本文导语: 我自己定义了一个包,如下: package Test; public class Assert { private static void perr(String msg) { System.err.println(msg); } public final static void is_true(boolean exp) { if(!exp) perr("Assertion failed"); } public final static void is_...
我自己定义了一个包,如下:
package Test;
public class Assert {
private static void perr(String msg) {
System.err.println(msg);
}
public final static void is_true(boolean exp) {
if(!exp) perr("Assertion failed");
}
public final static void is_false(boolean exp){
if(exp) perr("Assertion failed");
}
public final static void
is_true(boolean exp, String msg) {
if(!exp) perr("Assertion failed: " + msg);
}
public final static void
is_false(boolean exp, String msg) {
if(exp) perr("Assertion failed: " + msg);
}
} ///:~
编译后放在c:packagetest目录下。在classpath中加入引用c:packagetest,我用的是win2000.下面是一个引用包的一个程序
import Test1.*;
// import com.bruceeckel.tools.*;
public class TestAssert {
public static void main(String[] args) {
Assert.is_true((2 + 2) == 5);
Assert.is_false((1 + 1) == 2);
Assert.is_true((2 + 2) == 5, "2 + 2 == 5");
Assert.is_false((1 + 1) == 2, "1 +1 != 2");
}
} ///:~
编译时说找不到包请指教。
package Test;
public class Assert {
private static void perr(String msg) {
System.err.println(msg);
}
public final static void is_true(boolean exp) {
if(!exp) perr("Assertion failed");
}
public final static void is_false(boolean exp){
if(exp) perr("Assertion failed");
}
public final static void
is_true(boolean exp, String msg) {
if(!exp) perr("Assertion failed: " + msg);
}
public final static void
is_false(boolean exp, String msg) {
if(exp) perr("Assertion failed: " + msg);
}
} ///:~
编译后放在c:packagetest目录下。在classpath中加入引用c:packagetest,我用的是win2000.下面是一个引用包的一个程序
import Test1.*;
// import com.bruceeckel.tools.*;
public class TestAssert {
public static void main(String[] args) {
Assert.is_true((2 + 2) == 5);
Assert.is_false((1 + 1) == 2);
Assert.is_true((2 + 2) == 5, "2 + 2 == 5");
Assert.is_false((1 + 1) == 2, "1 +1 != 2");
}
} ///:~
编译时说找不到包请指教。
|
没问题!我已经试过了!
TestAssert.java改成:
import Test.Assert;
public class TestAssert {
public static void main(String[] args) {
Assert.is_true((2 + 2) == 5);
Assert.is_false((1 + 1) == 2);
Assert.is_true((2 + 2) == 5, "2 + 2 == 5");
Assert.is_false((1 + 1) == 2, "1 +1 != 2");
}
}
TestAssert.java改成:
import Test.Assert;
public class TestAssert {
public static void main(String[] args) {
Assert.is_true((2 + 2) == 5);
Assert.is_false((1 + 1) == 2);
Assert.is_true((2 + 2) == 5, "2 + 2 == 5");
Assert.is_false((1 + 1) == 2, "1 +1 != 2");
}
}
|
你的package 名是test
你import的时候用的是 import Test1.*;??
还有一般存放类的时候会按包名作为目录结构
所以我建议你把所有的class文件放到名为test的目录下
然后把test目录放到你的classpath下面
你import的时候用的是 import Test1.*;??
还有一般存放类的时候会按包名作为目录结构
所以我建议你把所有的class文件放到名为test的目录下
然后把test目录放到你的classpath下面