一、注释
注释不会被执行,是给写代码的人看的。是非常重要非常好的习惯。
- 单行注释 ://
- 多行注释 :/* */
- 文档注释 :javadoc,/** */
有兴趣可以搜:有趣的代码注释。
二、标识符
Java所有组成部分都需要名字:类名、变量名等。
所有标识符都应该以字母(A~Z or a~z),美元符($),或者下划线(_)开始。
标识符是大小写敏感的。
常见关键字 | ||||
---|---|---|---|---|
absract | assert | boolen | 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 |
retuen | strictfp | short | static | super |
switch | synchronized | this | throw | throws |
transient | try | void | volatite | while |
三、数据类型
-
强类型语言
要求变量的使用要严格符合规定,所有变量都必须先定义才能使用。 -
弱类型语言
-
Java两大数据类型
基本类型(primitive type)
引用类型(reference type)
//8大基本数据类型,具体长度可输入如Byte,CTRL+鼠标左键 查看长度。 byte num0 = 6; //1 Byte=8b short num1 = 190; int num2 = 101232; //最常用 long num3 = 232897L;//long类型要在数字后面加个L //小数:浮点数 float num4 = 50.1F;//float类型要在数字后面加个F double num5 =3.14159262356154556456; //字符 char name = 's'; //字符串,String是不是关键字,是类 String name2 = "秦始皇"; //布尔值:代表是非 boolen flag = true; //boolen flag1 = false;
>狂神说Java
标签:注释,01,java,float,数据类型,long,语法,boolen,Java
From: https://www.cnblogs.com/quliangshyang/p/16785293.html