gpt4 book ai didi

C++ 最大非负整数

转载 作者:太空宇宙 更新时间:2023-11-04 14:35:42 24 4
gpt4 key购买 nike

以下是否会在所有平台、int 大小等上按预期工作?还是有更容易接受的方法? (我做了以下内容。)

#define MAX_NON_NEGATIVE_INT ((int)(((unsigned int)-1) / 2))

我不会通过解释它在做什么来侮辱你的智商!

编辑:我应该提到我不能使用任何标准类,因为我在没有 C 运行时的情况下运行。

最佳答案

a standard way to this :

#include <limits>
#include <iostream>

cout << numeric_limits<unsigned int>::max();

作为标准,这保证可以跨所有平台移植。

关于C++ 最大非负整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3803961/

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