关于java:day-02

57次阅读

共计 382 个字符,预计需要花费 1 分钟才能阅读完成。

day02

  • 编写 Hello World 程序
  • java 编译格调

编写 Hello World 文件


public class HelloWorld{public static void main(String []args){System.out.println("Hello World")
  }
}

java 代码编写格调

1. 次行格调

public class Test
{public static void main(String []args)
  {System.out.println("Hi");
  }
}

2. 行尾格调(自己在用 举荐)

public class Test2{public static void main(String [] args){System.out.println("Hello World");
  }
}

1. 次行格调在代码量少 的时候不便浏览
2. 行尾格调能够缩小一些轻微的谬误, 且更节俭空间
注:尽量不要两种格调 混搭!

正文完
 0