gpt4 book ai didi

C++ 无法计算其中包含 vector 大小的公式?

转载 作者:太空狗 更新时间:2023-10-29 23:25:18 25 4
gpt4 key购买 nike

int main() {
vector<int> v;
if (0 < v.size() - 1) {
printf("true");
} else {
printf("false");
}
}

它打印 true 表示 0 < -1

最佳答案

std::vector::size()返回一个无符号整数。如果它是 0 而你减去 1,它会下溢并变成一个巨大的值(特别是 std::numeric_limits<std::vector::size_type>::max() )。比较工作正常,但减法产生了一个你没有预料到的值。

有关无符号下溢(和溢出)的更多信息,请参阅:C++ underflow and overflow

最简单的代码修复可能是 if (1 < v.size()) .

关于C++ 无法计算其中包含 vector 大小的公式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54263233/

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