摘要:
循环结构 1.while循环 while循环是先判断再执行! while(布尔表达式){ //循环内容 } 只要表达式为true,循环会一直进行下去,所以通常会在循环进行到一定程度的时候,让表达式失效从而停止循环。 //输出1~100 int i = 0; int sum = 0; while(i 阅读全文
摘要:
运算符 1、算数运算符 +、-、*、/、%、++、-- //++、-- int a = 3; int b = a++;//a = a + 1,先赋值,后自加 System.out.println(a); int c = ++a;//a = a + 1,先自加,后赋值 System.out.print 阅读全文
摘要:
变量、常量 1、变量作用域 public class Variable{ static int allClicks = 0;//类变量 String str = "hello world";//实例变量 public void method(){ int i = 0;//局部变量 } } 局部变量: 阅读全文
摘要:
数据类型拓展 1、整数拓展:进制 二进制0b、十进制、八进制0、十六进制0x int i = 10;//十进制 int i1 = 010;//八进制 int i2 = 0x10;//十六进制,0~9 A~F 2、浮点数拓展 在进行对比时有舍入误差,能表示大约,接近但不等于。 float f = 0. 阅读全文