代码返回值的为什么不是布尔型
public class HelloWorld{
public static void main(String[] args) {
int a=16;
double b=9.5;
String str1="hello";
String str2="imooc";
System.out.println("a等于b:" + (a==b));
System.out.println("a大于b:" + (a>b));
System.out.println("a小于等于b:" + (a<=b));
System.out.println("str1等于str2:" +(str1 =str2));
}
}
输出值
<pre>a等于b:false a大于b:true a小于等于b:false str1等于str2:imooc