通常,当有人创建控制台程序时,他会编写
#include <iostream>
#include <stdlib.h>
int main(){
std::cout<<"hello world"<<std::endl;
system("pause");
}
std
必须包含调用cout
和endl
语句。
.h
当我使用标头和and中的代码创建一个库.cpp
,然后包含该库时,我必须直接使用函数/类/结构/等的名称。我怎样才能做到,所以我必须使用像std
for cout
and这样的前置词endl
?