a++或是
a--后缀运算符,表示a的值将在对表达式求值后更改。
++a或是
--a前缀运算,表示a的值将在对表达式求值之前更改。
让我们假设这一点;
a = 4;b = a++; // first b will be 4, and after this a will be 5// now a value is 5c = ++a; // first a will be 6, then 6 will be assigned to c
另请参阅此答案。
欢迎分享,转载请注明来源:内存溢出
a++或是
a--后缀运算符,表示a的值将在对表达式求值后更改。
++a或是
--a前缀运算,表示a的值将在对表达式求值之前更改。
让我们假设这一点;
a = 4;b = a++; // first b will be 4, and after this a will be 5// now a value is 5c = ++a; // first a will be 6, then 6 will be assigned to c
另请参阅此答案。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)