"i++"和“++i”的区别
Posted komean
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了"i++"和“++i”的区别相关的知识,希望对你有一定的参考价值。
测试:
#include <iostream>
using namespace std;
int main(){
int i =0;
cout << "初始化 i == " << i << endl;
cout << "i++ == " << i++ << endl;
cout << "经过 i++ 运算,此时的i: " << i << endl;
cout << endl;
i = 0; // i 重置为0
cout << "初始化 i == " << i << endl;
cout << "++i == " << ++i << endl;
cout << "经过 ++i 运算,此时的i: " << i << endl;
}
以上是关于"i++"和“++i”的区别的主要内容,如果未能解决你的问题,请参考以下文章
关于“I know”, "I got it" 和 “I see”的区别
vue-elementui的时间日期选择器( value-format="yyyy-MM-dd HH:mm:ss"),以及时间解析{y}-{m}-{d} {h}:{i}:{s}(代