gpt4 book ai didi

c++ - Static unsigned int foo 和后来的 if ( foo >0 )?

转载 作者:行者123 更新时间:2023-11-28 03:46:32 25 4
gpt4 key购买 nike

这本书讲述了这样的写作:

static unsigned int foo;

以后

if( foo > 0)
{

是错误的,它会导致一个很难发现的错误。这是为什么?

在 x86 汇编语言编程中,有带符号的算术指令和还有无符号算术指令,JG JL <-符号算术JB JA <- 未签名指令。

所以编译器可以用无符号指令组装 if (foo >0 ) 语句不是吗?有人可以提前解释一下它是如何工作的吗?

这个指令错了吗?或者如果“C”中的“C++”是严格的那个案子?请解释。

这里我们比较一个无符号变量和一个立即数。里面发生了什么在这种情况下实际上是编译器?

当我们比较有符号值和无符号值时会发生什么?那么编译器会选择什么指令,有符号指令还是无符号指令?

--提前致谢--

最佳答案

这个问题不应该在汇编程序级别上回答,而应该在 c/c++ 语言级别上回答。在大多数体系结构上,不可能比较有符号数和无符号数,并且 c/c++ 不支持此类比较。相反,有关于将一个操作数转换为另一个操作数的类型以便比较它们的规则 - 例如参见 this question 的答案

关于与文字进行比较 - 典型的做法(就像你所做的那样)并没有错,但你可以做得更好 - 根据 c++ 标准:

2.13.1.1 An integer literal is a sequence of digits that has no periodor exponent part. An integer literal may have a prefix that specifiesits base and a suffix that specifies its type. The lexically firstdigit of the sequence of digits is the most significant. A decimalinteger literal (base ten) begins with a digit other than 0 and con-sists of a sequence of decimal digits. An octal integer literal (baseeight) begins with the digit 0 and con- sists of a sequence of octaldigits.22) A hexadecimal integer literal (base sixteen) begins with 0xor 0X and consists of a sequence of hexadecimal digits, which includethe decimal digits and the letters a through f and A through F withdecimal values ten through fifteen. [Example: the number twelve can bewritten 12, 014, or 0XC. ]

2.13.1.2 The type of an integer literal depends on its form, value,and suffix. If it is decimal and has no suffix, it has the first ofthese types in which its value can be represented: int, long int; ifthe value cannot be repre- sented as a long int, the behavior isundefined. If it is octal or hexadecimal and has no suffix, it has the first of these types in which its value can be represented: int,unsigned int, long int, unsigned long int. If it is suffixed by u orU, its type is the first of these types in which its value can berepre- sented: unsigned int, unsigned long int. If it is suffixed by lor L, its type is the first of these types in which its value can berepresented: long int, unsigned long int. If it is suffixed by ul, lu,uL, Lu, Ul, lU, UL, or LU, its type is unsigned long int.

如果您想确定您的字面类型(以及同类型),请添加描述的后缀以确保字面类型正确。

还值得注意的是,字面量 0 实际上不是十进制而是八进制 - 它似乎没有改变任何东西,但却出乎意料 - 或者我错了吗?

总结一下——这样写代码并没有错,但你应该记住,在某些情况下,它的行为可能违反直觉(或者至少是反数学的;)

关于c++ - Static unsigned int foo 和后来的 if ( foo >0 )?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7439268/

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