I was going through some VC++ code in a large code-base and came across this:
if (nState & TOOL_TIPS_VISIBLE) nState &= ~TOOL_TIPS_VISI
7条回答 挽巷 (楼主) 2021-01-18 08:02 x &= y means x = x & y. So yes you're right. 0 讨论(0) 查看其它7个回答 发布评论: 提交评论 加载中... 自定义标题段落格式字体字号代码语言点击上传x 验证码 看不清? 提交回复
x &= y means x = x & y. So yes you're right.
x &= y
x = x & y
热议问题