标题: 请问下边的代码运行后得出的结果是什么?--基础题 [打印本页] 作者: 7℃洋 时间: 2012-11-13 00:34 标题: 请问下边的代码运行后得出的结果是什么?--基础题 public class Foo{
public static void main(String args[]) {
int x = 100;
int y = 200;
if (x = y)
System.out.println("Not equal");
else
System.out.println("Equal");
}
} 作者: 廖力 时间: 2012-11-13 02:07
它会编译不过报错
错误信息为:Type mismatch: cannot convert from int to boolean
意思是不能把int类型转成boolean类型