Questions tagged «increment»

请勿单独使用此标签。与[javascript]或[python]之类的语言标签一起使用。通常使用增量运算符将一个值加到变量的值上。


2
指针指向的int的增量值
我有一个int指针(即int *count),我想通过使用++运算符来增加所指向的整数。我以为我会打电话给: *count++; 但是,我得到了一个构建警告“表达式结果未使用”。我可以打电话 *count += 1; 但是,我也想知道如何使用++运算符。有任何想法吗?

2
C和C ++关于++运算符的区别
我一直在鬼混一些代码,看到一些我不理解的“原因”。 int i = 6; int j; int *ptr = &i; int *ptr1 = &j j = i++; //now j == 6 and i == 7. Straightforward. 如果将运算符放在等号左侧怎么办? ++ptr = ptr1; 相当于 (ptr = ptr + 1) = ptr1; 而 ptr++ = ptr1; 相当于 ptr = ptr + 1 = …
71 c++  c  increment  prefix 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.