gpt4 book ai didi

c# - 将 boolean 值更改为与初始值相反的值

转载 作者:IT王子 更新时间:2023-10-29 04:25:16 25 4
gpt4 key购买 nike

这对你来说可能听起来很奇怪,但我懒得每次都这样写

if (threadAlive)
{
threadAlive = false;
}
else
{
threadAlive = true;
}

难道没有类似 int++ 或 int-- 的东西来将 bool 值更改为其值的相反值吗?

最佳答案

只需这样做:

threadAlive = !threadAlive;

关于c# - 将 boolean 值更改为与初始值相反的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18018289/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com