bool count=1;count= !count;是变为0吗
时间: 2024-03-04 18:54:23 浏览: 131
count-the-number-of-the-words.zip_The Count
是的,`!count` 表示对 `count` 取反,即如果 `count` 的值为 1,则取反后为 0,如果 `count` 的值为 0,则取反后为 1。因此,`count = !count` 的作用是将 `count` 的值从 1 变为 0,或者从 0 变为 1。在这个例子中,第一行代码将 `count` 初始化为 1,第二行代码将 `count` 的值取反,因此 `count` 的值变为了 0。
阅读全文