- 博客(2)
- 收藏
- 关注
原创 chapter 3 string vector iterator array
//------------String------------------- 1.stirng a;//默认a为空串 2.必须保证加号两边必须有一个String类型,注意“hello”并不是string类型 string s4 = s1 + ", "; // ok: adding a string and a literal string s5 = "hello" + ", "; //
2016-09-17 21:35:06 298
原创 chapter 2 指针与引用
一、有符号数与无符号数 有符号数和无符号数运算自动变成无符号数 二、指针与引用 1,某个值的引用无法改变,即是说引用只能引用一个对象 2.int &*p 错误,因为引用不是对象;int *&p正确 3. int i = 42; const int &r1 = i; // we can bind a const int& to a plain int object co
2016-09-17 21:31:08 242
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人