Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 3 个不同的类,它们都使用一些常量值。目前,我正在为每个班级定义所有这些。我如何集中它们?
我试图用常量创建一个新的静态类,然后在我的类中使用静态导入,但这不起作用。无法成功导入该类。
PS:我不想使用枚举和接口。
您不能从默认包(即 /src 目录)导入类。您需要在import子句中包含包名,即使两个类都在同一个包中。
import
例如:
Main
Constants
在课堂上Main:
import static utils.Constants.*; class Main {...}
在班上Constants
package utils.Constants; class Constants {...}