那位仁兄能给我解释一下“||”的用法?
代码是这个:
public class test
{
public static void main(String[] args)
{ methodA(5);
System.out.println(j);
}
private static int j = 0;
private static boolean methodB(int k){
j += k;
return true;
}
public static void methodA(int i){
boolean b;
b = i < 10 | methodB(4);
System.out.println(b);
b = i < 10 || methodB(8);
System.out.println(b);
}
}
输出结果是:
true
true
4
就是不知道这个|和||是什么意思
------解决方案--------------------如果你不知道什么意思 就先当他们一样一样好了.都是 "或者 "的意思
------解决方案--------------------|是按位或,数字也可以进行按位或操作
||是逻辑或,只有boolean型的变量可以进行逻辑或操作