📜  我可以从 main hava 调用另一个函数吗 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:02.607000             🧑  作者: Mango

代码示例1
package learningjava;

public class helloworld {
    public static void main(String[] args) {
        new helloworld().go();
        // OR
        helloworld.get();
    }

    public void go(){
        System.out.println("Hello World");
    }
    public static void get(){
        System.out.println("Hello World, Again");
    }
}