JDK JRE JVM
Hello world
public class Hello {
public static void main(String[] args) {
System.out.println("hello world");
}
}
注释
/**
*文档注释
* @author liuzonglin
* @date 2022/09/28
*/
public class Hello {
/*
多行注释
public static void main(String[] args) {
// 单行注释
}
*/
}