c++primer chapter three

3.1命名空间的using声明

using声明具有如下的形式:using namespace :: name;

 #include <iostream>

 using std :: cout; using std :: endl;

 int main(){
int i = ;
cout << i << endl;
}

初始化string对象的方式

string s1;

string s2(s1);

string s2 = s1;

string s3("value")

string s3 = "value"

string s4(n,'c')

string对象上的操作

上一篇:C++ primer chapter 12


下一篇:laravel code bright