教材学习内容总结
1.运算符及表达式
算数运算符:二目运算符:+ - * /%
单目运算符:++ -
精度(由低到高):byte short int long float double(看第二周总结),
关系运算符:> <> = <= ==!=
逻辑运算符:&&(逻辑与)||(逻辑或)(逻辑非)
赋值运算符:=(左边必须为变量)
instanceof运算符:obj instanceof class当对象是类或子类创建时,返回true
自增:i++;
自减:i--:
2.语句
2.1如果条件分支语句
if(条件){
if语句执行体
}
2.2 if-else语句
if(条件){
}else if(){
}else{}
2.3switch切换语句
switch (表达式){
case 值1 : 语句1
break;
case 值2 : 语句2
break;
...
default : 语句n
break;
}
2.4循环语句
2.4.1 for循环语句
public class forDemo {
public static void main(String[] args){
for (int x=0;x<20;x++){
System.out.println("value of x:"+x);
}
}
}
2.4.2 while循环语句
public class whileDemo {
public static void main(String[] arys){
int x = 10;
while (x<20){
System.out.println("value of x:" + x);
x++;
}
}
}
2.4.3 do-while循环语句
public class do-whileDemo {
public static void main(String[] arys){
int x = 10;
do{
System.out.println("value of x:" + x);
x++;
}
while (x<20);
}
}
3.break与继续语句
教材学习中的问题与解决过程
无..
代码调试中的问题与解决过程
问题:不知道应该引用UTIL具体哪个包
解决:import java.util。*; ......
问题:定义了三个主函数(辣鸡)
解决:改为定义一个主函数,引用其余两个函数