流程控制
1.选择
1.1 if
if(a>b){
System.out.println(a);
}
1.2 if…else
if(a>b){
System.out.println(a);
}
else{
System.out.println(b);
}
1.3 if…else if… else
if(a>b){
System.out.println(a);
}
else if{
System.out.println(b);
}
else{
System.out.println("hello");
}
2.循环
2.1 for
for(int i=0;i<10;i++){
System.out.println(i+" ");
}
2.2 while
int i=0;
while(i<10){
System.out.println(i+" ");
i++;
}
2.3 do…while
int i=0;
do{
System.out.println(i+" ");
i++;
}while(i<10);
注:
① for与while区别:出了for循环,i打印不出来了,但是出了while仍能打印出i
② do…while与for、while区别:do…while至少执行一次,while有时一次也不执行
死循环:
① for(; ;){ … }
② while(true){ … }
3.分支
3.1 switch()…case 1:…defualt:
int grade=5;
switch(grade)
{
case 'A' :
System.out.println("优秀");
break;
case 3 :
System.out.println("及格");
break;
case 'F' :
System.out.println("你需要再努力努力");
break;
default :
System.out.println("未知等级");
}
}
注:Switch里面可以是byte、short、int、char以及Byte、Short、Integer、Character、枚举(JDK5)、String(JDK7)
基本数据类型与包装类型的区别:
- Integer是int的包装类,int是基础数据类型
- Integer变量必须实例化后才能使用,int变量不需要
- Integer是对象的引用,指向new出Integer对象,int直接存储数据值
- Integer默认值是null,int的默认值是0
4.跳转
4.1 break
break 跳“出”离它最近的循环
4.2 continue
continue 跳“过”本次循环,即一次循环
4.3 return