C++ Primer(第6章 函数)
6.10-6.12
1 | void reset1(int* p, int* q) { |
6.17
1 | bool test01(const string& s) { |
6.18
1 | class matrix{}; |
6.21
1 | int test01(const int& i, const int* j) { |
6.22
1 | int test01(int* p, int* q) { |
6.27
1 | int func(initializer_list<int>il) { |
P 201 函数返回引用
1 | float temp; |
6.36-6.37
1 | string(&func(string (& arrStr)[10]))[10]; |
6.38
1 | decltype(odd) &arrPtr(int i) { |
6.42
1 | string make_plural(size_t ctr, const string& word, const string& ending ="s") { |
6.47
1 | void printVec(vector<int>& vec) |
6.55
1 | int add(int a, int b) { |
评论
LivereGitalk