我不确定这个声明是什么意思:
int i = x & y;
我运行了这个例子
int x = 1 & 2; int y = 5; int sum = x + y;
结果是 5,我不确定&在这种情况下我是否了解运算符的作用
&
.net c#
.net ×1
c# ×1