什么时候用“=”什么时候用“==”???
//赋值的时候用“=” a=b; a=3; b=2; //判断的时候用“==” if(a==b){ System.out.println("a和b相等。"); }