常用的位运算符 按位与 快速判断整数的奇偶性 奇数的二进制表示的最低位为1,偶数的二进制表示的最低位为0。 int num 9;
if (num & 1)
{// num 是奇数
}
else
{// num 是偶数
}按位异或 交换两个变量的值
int a 5;
int b 7;
a a ^ b;
b a ^ b;
a a ^ …
番外
为什么一个ts文件变成了component,因为它使用了components装饰器 components is just a class,you export it so angular know how to use it 举例:组件装饰器 decoration前总是有一个符号 decoration的作用(之一?) NgModu…
题目:
HJ94 记票统计
题解:
利用哈希表,投票是按姓名从哈希表中取出对应的票数,如果不在哈希表内证明为无效。
public class Main {public static void main(String[] args) {Scanner in new Scanner(System.in);int n Inte…