从零开始学java第一天

 1 /*
 2 createdBy zsm
 3 2021/10/30
 4 */
 5 //helloWorld类,main主方法,public表示公有的,输入sout IDEA会自动补全System.out.println();
 6 public class helloWorld {
 7     public static void main(String[] args){
 8         System.out.println("hello,java!");
 9     }
10 }
上一篇:springBoot redis


下一篇:java第一个helloworld