????1.????????????????
???????????????????????????????
????????????????????????????????
?????????????????????????????????????????????
??????????
????int a = 10
????int b = 20
????int *pFlag = &a
????vector<int> vctTemp
????vctTemp.push_back(1)
????string str1 = "hello"
????string str2 = "world"
????const int &m = 1
?????????a??b??a+b??a++??++a??pFlag??vctTemp[0]??100??string("hello")??str1+str2??m???????????????
????a??b?????????????????????????????
????a+b???????????????????????????????
????a++?????????????a???????????????????a?????1?????????????????????????????????????????????????????????
????++a???????????a?????1?????????????????a?????????????????????????????
????pFlag??*pFlag?????????????????????????????
????vctTemp[0]???????????[]??????????[]????????????????int & ?? ???????(???????????)???????
????100??string("hello")???????????????????????????????
????str1???????????????????????????
????str1+str2???????+??????????+????????????????string???????????????????????????
????m??????????????????????????????????????????????????????????????????
?????????????????????????????????????????????????????ε??????????????????????ú???????????
????????????????????????????????????????????????????????????????????????????
??????????????????????????????????????????????????????????????????Υ????????????塣????????????????????????·??Σ???????????????????????????????????????????????????????????????????????????
???????????????????????????????????????????????????????????????????????????????????
?????????????????????????????????????????????????????????????????????????????????????????????????????????浽C++???????????????---???????????
????vector<int> GetAllScores()
????{
????vector<int> vctTemp;
????vctTemp.push_back(90);
????vctTemp.push_back(95)
????return vctTemp;
????}
?????????vector<int> vctScore = GetAllScores()???г????????????????????ι???????????????Щ??????
???????????RVO??Return Value Optimization??????????????????????????Щ????????2?????С????????
?????????????????????????????????????????????????????????????ο??????????????????????????
??????????????????????????????void GetAllScores(vector<int>&vctScore)???????????????????????????????????????????????????
????string s1("hello");
????string s = s1 + "a" + "b" + "c" + "d" + "e"
???????s???г????????????????????????????漰??????????????????????????????????????Ч???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????“???”??????????????????????STL?е?auto_ptr??????????????C++11????????????????????????????????????C++11????&?????????????&&????????????磺
????int &&a = 10;
???????????????????η?????????????????????????ú??????????á?