c++中Std有什么用
std是一个命名空间,C++标准函数或者对象都是在std中定义的,例如cin和cout,当我们要使用标准库的函数或对象时都需要用std来限定。
使用std可通过using namespace std或者std::
要注意在#include<iostream.h>虽然不存在类std,但是有cin和cout的相关函数,所以不需要使用命名空间,可以直接使用,例如:
#include <iostream.h>
int main (){
cout << "Hello World! "<<endl;
cout << "I'm a C++ program" <<endl;
}
扩展资料:
std在C++中的使用方法:
一是直接用using namespace std,如
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World! "<<endl;
cout << "I'm a C++ program" <<endl;
}
另外就是使用std::,例如:std::cout
2024-07-18 广告
std是一个命名空间,C++标准函数或者对象都是在std中定义的,例如cin和cout,当我们要使用标准库的函数或对象时都需要用std来进行限定。
使用std时可通过using namespace std或者std::要注意在#include<iostream.h>虽然不存在类std,但是有cin和cout的相关函数,所以不需要使用命名空间,可以直接使用,例如:
#include <iostream.h>
int main (){
cout << "Hello World! "<<endl
cout << "I'm a C++ program" <<endl
扩展资料:
1、使用命名空间 std:
#include <cstdio>int main(){std::printf("http://c.biancheng.net\n");return 0;}
2、不使用命名空间 std:
#include <cstdio>int main(){printf("http://c.biancheng.net\n");return 0;}
这两种形式在 Microsoft Visual C++ 和 GCC 下都能够编译通过,也就是说,大部分编译器在实现时并没有严格遵循标准,它们对两种写法都支持,程序员可以使用std也可以不使用。
2013-07-15
2013-07-15
推荐于2017-11-28
由于namespace的概念,使用C++标准程序库的任何标识符时,可以有三种选择:
1、直接指定标识符。例如std::ostream而不是ostream。完整语句如下:
std::cout << std::hex << 3.4 << std::endl;
2、使用using关键字。
using std::cout;
using std::endl;
以上程序可以写成
cout << std::hex <<3.4 << endl;
3、最方便的就是使用using namespace std;这样命名空间std内定义的所有标识符都有效(曝光)。就好像它们被声明为全局变量一样。那么以上语句可以如下写:
cout << hex << 3.4 << endl;