一.初始Java

1.框架结构
2.main方法
3.转义符
public class Dome01 {
 public static void main(String[] args) {       //main方法,即程序入口
  //注:一个程序只能有一个main方法
  //转义符    一系列的空格
  System.out.print("Hello   Word!");
  //转义符
  System.out.print("Hello   Word!");
  
 }
}
原文地址:https://www.cnblogs.com/xu06123/p/6684778.html