package com.langsin.Test; | |
public class Test { | |
//HelloWorld ! | |
public void showHelloWorld() { | |
System.out.println("Hello World!"); | |
} | |
public static void main(String[] args) { | |
new Test().showHelloWorld(); | |
} | |
} |
本文共 253 字,大约阅读时间需要 1 分钟。
package com.langsin.Test; | |
public class Test { | |
//HelloWorld ! | |
public void showHelloWorld() { | |
System.out.println("Hello World!"); | |
} | |
public static void main(String[] args) { | |
new Test().showHelloWorld(); | |
} | |
} |
转载于:https://www.cnblogs.com/GY-Bky/p/4456898.html