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.
公共类 ABC{ 公共静态 void main(String[] args) { out.println("Hello"); } }
这很有效,尽管静态导入在 java 中通常不被认为是一件好事。
import static java.lang.System.out; public class ABC { public static void main(String[] args) { out.println("hello"); } }