方法:
单行注释://
多行注释:/* */
public class Hello { public static void main(String[] args) { System.out.print("Hello World!"); //单行注释:只能注释一行文字 /*多行注释:可以注释一段文字 注释2 注释3 注释4 */ } }
abstract | assert | boolean | break | byte |
---|---|---|---|---|
case | catch | char | class | const |
continue | default | do | double | else |
enum | extends | final | finally | float |
for | goto | if | implements | import |
instanceof | int | interface | long | native |
new | package | private | protected | public |
return | strictfp | short | static | super |
switch | synchronized | this | throw | throws |
transient | try | void | volatile | while |
java所有的组成部分都有名字。类名、变量名及方法名都被称为标识符。
所有的标识符都应该以字母(A-Z或者a-z)、美元符($)、或者下划线(_)开始
首字符之后可以是字母(A-Z或者a-z)、美元符($)、下划线(_)或数字的任意字符组合
不能使用关键字作为变量名或者方法名
标识符对大小写敏感
合法标识符举例:age、$salary、_value、__1_value
非法标识符举例:123abc、-salary、#abc
可以是用中文命名,但一般不建议去使用,也不建议拼音
public static void main(String[] args) { String LOL = "划水黑铁"; System.out.print(LOL); }