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

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 0;


}

 

3、编译运行:

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

posted on 2016-08-18 09:17  蒋乐兴的技术随笔  阅读(407)  评论(0编辑  收藏  举报

导航