C# 对布尔值取反怎么操作。 我写的是 bool data = true; not(data); 提示:当前上下文中不存在名称 not
答案:3 悬赏:70 手机版
解决时间 2021-01-13 02:47
- 提问者网友:ミ烙印ゝ
- 2021-01-12 05:08
C# 对布尔值取反怎么操作。 我写的是 bool data = true; not(data); 提示:当前上下文中不存在名称 not
最佳答案
- 五星知识达人网友:迟山
- 2021-01-12 06:06
bool tmp;
tmp++;
bool tmp;
tmp !=tmp;
bool tmp;
tmp ^=1;
tmp++;
bool tmp;
tmp !=tmp;
bool tmp;
tmp ^=1;
全部回答
- 1楼网友:白昼之月
- 2021-01-12 07:28
bool a = true;
bool b = !a;
用叹号
bool b = !a;
用叹号
- 2楼网友:由着我着迷
- 2021-01-12 06:33
取非应该是!=吧,
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯