注释
单行
多行
文档注释
public class Demo01 { public static void main(String[] args) { //string Ahello = "shaoqi" ; //string ahello = "shaoqi" ; String 你好 = "百星王者" ; System.out.println(你好); //所有标识符都S应该以字母大写和小写(A或a)开头,美元$、下划线(_)开始 // 首字母之后,可以是字母大写和小写(A或a)开头,美元$、下划线(_)或数字的任何字符组合 } }
java数据类型分为两类
1.基本类型
数值类型:整数 浮点 字符型
boolean类型:ture和false
2.引用类型
类,接口,数组
public class Dome03 { public static void main(String[] args) { float f=0.1f; double d=1.0/10; System.out.println(f==d); float d1=3213165132132132153131f; float d2=d1+1; System.out.println(d1==d2); //float是有限的 离散的 舍入误差 大约接近但不等于.最好完全避免使用浮点数进行比较 //===============================字符拓展 //字符可以强制转换为数字 ,所有的字符本质都是数字 char c3 ='\u0061'; System.out.println(c3); System.out.println("=============================="); } }