2021-01-01

public class demo3 { public static void main(String[] args) { //整数扩展,进制 //8进制0开头 2进制0b开头 16进制0x开头 int i=10; int i2=010;//8进制0 int i3=0x10;//16进制0x System.out.println(i); System.out.println(i2); System.out.println(i3); //浮点数拓展,银行业务怎么表示?钱 float f=0.1f; double d=1.0/10; System.out.println(f); System.out.println(d); System.out.println(fd);//false float d1=22654614849f; float d2=d1+1;//true System.out.p## 标题rintln(d1); System.out.println(d2); System.out.println(d1d2); //---------------------------------- //字符拓展,每一个字都对应有Unicode编码。 char c1 =‘a’; char c2 =‘中’; System.out.println(c1); System.out.println((int)c1);//强制转换 System.out.println(c2); System.out.println((int) c2); //所有的字符的本质还是数字 //Unicode编码 2字节 65536 //转义字符 \tk空格 \n换行 System.out.println(“hello\tworld”); String sa=new String(“hello,world”); String sb=new String(“hello,world”); System.out.println(sasb);//false 值一样,但是内存不一样 String sc=“hello,world”; String sd=“hello,world”; System.out.println(scsd);//true 对象,从内存分析 //布尔值拓展 boolean flag=true;//用于判断 if (flag==true){}//新手 if (flag){}//老手

你可能感兴趣的:(笔记)