关于布尔值
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));
}
}
这个作业中 是只要有判断语句 那么返回值一定是true或者false吗 会不会有某种特殊情况返回的值不是这两个 劳烦赐教