作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个家庭作业,我必须在方法中使用按位运算符。我需要为每个运算符使用方法。给出了我需要使用的接口(interface) BitOperators。我能够在不使用方法的情况下做到这一点,但我需要使用方法。这是我所拥有的,但它不起作用。我对方法还很陌生,所以我不知道该怎么做。
import java.util.Scanner;
public class TestBitOperators {
public static interface BitOperators {
BitOperators and(byte a, byte b);
BitOperators or(byte a, byte b);
BitOperators xor(byte a, byte b);
BitOperators shift(byte n, byte l, byte r);
BitOperators comp(byte n);
}
static int and;
static int or;
static int xor;
public static void main(String[] args) {
byte a;
byte b;
byte l;
byte r;
final byte EXIT = -1;
Scanner stdin = new Scanner(System.in);
do{
System.out.println("Enter a and b numbers in the "
+ "interval [-128,127] (-1 -1 to exit): ");
a = stdin.nextByte();
b = stdin.nextByte();
}
if(a == EXIT && b == EXIT){
break;
}
System.out.println("Enter #left-shift bits in the interval [0,8]: ");
l = stdin.nextByte();
System.out.println("Enter #right-shift bits in the interval [0,8]: ");
r = stdin.nextByte();
}
System.out.println(a + " OR " + b + " is " + and);
System.out.println(a + " OR " + b + " is " + or);
System.out.println(a + " XOR " + b + " is " + xor);
System.out.println(a + " shifted left " + a + " is " + (a << l));
System.out.println(a + " shifted right " + a + " is " + (a >> r));
System.out.println(a + " unsigned-shifted right " + a +
" is " + (a >>> r));
System.out.println(a + " COMPLEMENT " + (~a));
}
while((a < abMAX && b < abMAX) && (a > abMIN && b > abMIN));
}
public static int and(byte a, byte b){
and = a&b;
return and;
}
public static int or(byte a, byte b){
or = a|b;
return or;
}
public static int xor(byte a, byte b){
xor = a^b;
return xor;
}
}
最佳答案
您编写了执行按位运算符的正确方法,但似乎您没有使用它们:
您应该调用您创建的方法而不是访问静态变量:
System.out.println(a + " AND " + b + " is " + and(a, b));
System.out.println(a + " OR " + b + " is " + or(a, b));
System.out.println(a + " XOR " + b + " is " + xor(a, b));
关于java - 如何在java中使用方法来使用按位运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42502828/
我是一名优秀的程序员,十分优秀!