gpt4 book ai didi

C++ 类型 unsigned long int

转载 作者:IT老高 更新时间:2023-10-28 22:02:55 25 4
gpt4 key购买 nike

unsigned long int 是否等同于 unsigned long ?在 C++ 中

在我看来,它们是相同的。但我看到有些人仍在代码中使用 unsigned long int。不明白为什么?谁能帮我解释一下

#include <stdio.h>

int main() {
unsigned long int num = 282672;
int normalInt = 5;
printf("");
return 0;
}

最佳答案

是的。

long 只是 long int 的简写。这是因为原则上 long 只是一个限定符(例如,它也可以用于延长 double 数据类型)

来自 C++ ISO 标准,第 7.1.5.2 节,等效类型说明符表:

enter image description here

关于C++ 类型 unsigned long int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11779704/

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