C++----练习--引用头文件

时间:2021-08-08 06:13:36

1、创建头文件和源文件

touch /tmp/tools.h

touch /tmp/main.cpp

2、各文件的内容如下:

tools.h

#include<iostream>

void print_hello_world()
{
std::cout<<"hello world ..."<<std::endl;
}

main.cpp

#include<iostream>
#include<cstdlib>
#include "tools.h" // 和引入标准库不同这个要加.h int main()
{
print_hello_world();
return ; }

3、编译运行:

[root@workstudio tmp]# g++ -o main main.cpp
[root@workstudio tmp]# ./main
hello world ...