gpt4 book ai didi

c++ - 当 X 为真时断言 Y 也为真 - 暗示

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:25:30 25 4
gpt4 key购买 nike

如何断言如果 Xtrue 那么 Y 也为 true。问题是,如果我写以下内容:

assert(X && Y && "If X is true then Y should be true too.");

如果 bool X = false; 将失败,而这也可能是一个有效的情况。

最佳答案

逻辑表达式为:assert(!X || (X && Y))

如果你想包含你的消息,你可以将它括在括号中:

assert((!X || (X && Y)) && "If X is true then Y should be true too.");

现在,我们可以简化这个逻辑,因为我们知道如果 !X 评估为 false(并且我们正在评估 || 的右侧),那么我们就知道X一定为真,所以我们可以进一步简化它:

assert(!X || Y); // If !X is false, then X must be true, so no need to test it.

关于c++ - 当 X 为真时断言 Y 也为真 - 暗示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35133835/

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