gpt4 book ai didi

c++ - 一元减号运算符如何与 C++ 中的整数文字一起使用?

转载 作者:行者123 更新时间:2023-11-30 04:42:32 25 4
gpt4 key购买 nike

我读到默认情况下十进制文字是有符号的。
为简单起见,假设 int 可以容纳的值是整数 [-128,127],而 long 可以容纳整数 128。现在,如果我编写文字会发生什么-128?我所知道的是这里的字面量只是“128”,它不能放入 int 中,而是可以放入 long 中!还是一元减号运算符会做其他事情?
那么,一元减号如何与整数文字一起使用?

最佳答案

来自 cppreference.com :

The type of the integer literal is the first type in which the value can fit, from the list of types which depends on which numeric base and which integer-suffix was used.

当使用十进制基数且没有后缀时,如您的示例所示,可能的类型是 intlong intlong long int。如果值(忽略减号)适合 long 而不是 int,则值的类型为 long

确定类型后,将正常应用一元减号运算符。将一元减号应用于 long 会产生 long(即使结果适合 int)。

关于c++ - 一元减号运算符如何与 C++ 中的整数文字一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58687940/

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