如何将 UInt32 设置为其最大值 [英] How do I set a UInt32 to it's maximum value

查看:173
本文介绍了如何将 UInt32 设置为其最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  1. UInt32 的最大值是多少?

  1. What is the maximum value for a UInt32?

有没有办法可以使用 sizeof 运算符来获取最大值(因为它是无符号的)?所以我的代码中不会出现 #defines 或幻数.

Is there a way I can use the sizeof operator to get the maximum value (as it is unsigned)? So I don't end up with #defines or magic numbers in my code.

推荐答案

stdint.h 中定义了一个宏 UINT32_MAX,你可以使用

There's a macro UINT32_MAX defined in stdint.h which you can use

#include <stdint.h>

uint32_t max = UINT32_MAX;

<小时>

有关相关标题的更多信息:

http://pubs.opengroup.org/onlinepubs/009695299/basedefs/stdint.h.html

这篇关于如何将 UInt32 设置为其最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆