一直提示包找不到,我用记事本写的,代码都对,编译的时候就是提示错误
Test3.java
package test;
public class Test3{
void call(){
System.out.println("Test3.calling");
}
}inital.java
package test;
import test.Test3;
public class inital {
public static void main(String[] args) {
Test3 t1=new Test3();
t1.call();
}
}代码如上,帮我看看哪里出了问题,错误
