gpt4 book ai didi

c# - 检查整数是否为 0 并返回 bool 值的简短方法

转载 作者:太空宇宙 更新时间:2023-11-03 20:49:32 25 4
gpt4 key购买 nike

可以用更好的方式做到这一点吗?

public bool AreMoreNeeded() => EntitiesNeededCount == 0 ? true : false;

我正在使用它来检查 integer 是否为 0 并根据操作结果返回 boolean

最佳答案

是的,删除 truefalse:

public bool AreMoreNeeded() => EntitiesNeededCount == 0;

equality operator :

The equality operator == returns true if its operands are equal, false otherwise.

编辑:

你可以让它更短一点,让它成为一个属性而不是方法:

public bool AreMoreNeeded => EntitiesNeededCount == 0;

关于c# - 检查整数是否为 0 并返回 bool 值的简短方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56733209/

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