如何在同一目录中的同一包中使用其他类中的一个类?我有一类实用程序:
package pl.jcubic;
public class Utils {
public static String foo() {
return "foo";
}
}
和一流的服务
package pl.jcubic;
public class Service {
public String test() {
return Utils.foo();
}
}
这两个文件的名称与类相同,它们位于目录中./pl/jcubic/
,当我编译服务时,我error: cannot find symbol
在 Utils 所在的行中出现错误。
我试过了
import Utils;
有 2 个错误error: '.' expected
并且error: ';' expected
在同一行
我试过了
import pl.jcubic.Utils;
error: cannot find symbol
在 import 所在的行和我使用该类的行中。