标签:span 引用 命名 需要 使用 空间 namespace class 注意
1 using std::cout;//std::命名空间名字, cout是其一个成员 2 using std::cin; 3 using std::endl; 4 int main() 5 { 6 int v1, v2 ; 7 cout <<"using 的正确使用"<< endl; 8 cin >> v1 >> v2; 9 cout <<"the sum of v1 + v2 = "<< v1 + v2 << endl; 10 return0; 11 }
1 usingnamespace std; 2 int main() 3 { 4 int v1, v2 ; 5 cout <<"using 的正确使用"<< endl; 6 cin >> v1 >> v2; 7 cout <<"the sum of v1 + v2 = "<< v1 + v2 << endl; 8 return0; 9 }
标签:span 引用 命名 需要 使用 空间 namespace class 注意
原文地址:http://www.cnblogs.com/flyblog/p/6080190.html