本文介绍了这是什么运营商:安培=的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人能解释什么是经营者&安培; =
为
我搜索,但我只拿到结果与&放大器;
或 =
解决方案
A和= B;
是一样的。
A = A和b:
&安培;是的按位与运算符,搜索。
Can someone explain what is the operator &=
for?
I searched, but I got only results with &
or =
.
解决方案
a &= b;
Is the same as
a = a & b;
& is the "bitwise and operator", search for that.
这篇关于这是什么运营商:安培=的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!