Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试执行一个简单的按位语句来查看用户是否具有安全性。在我引入变量之前似乎没问题。
这有效:字节测试 = 1 & 3。
不起作用:字节 a = 1; 字节 b = 3; 字节测试 = a & b;
无论如何我可以让它工作吗?
您需要将其byte按位转换回 a 并且将返回 an int,因此请执行以下操作:
byte
int
byte a = 1; byte b = 3; byte test = (byte)(a & b);