1. 程式人生 > >6、C++ 靜態編譯連結使用庫

6、C++ 靜態編譯連結使用庫

直接上例子:存在三個檔案

 example.cpp中的檔案

#include<iostream>
#include"function.h"
using namespace std;
int fun(int a,int b);
int main()
{
cout<<fun(2,3)<<endl;
cout<<"hello world"<<endl;
return 0;
}

function.cpp

                                                                                                                     
"example.cpp" 11L, 158C written
hello world
#include<iostream>
#include "function.h"
int fun(int a,int b)
{
return a+b;
}

 

function.h

#include<iostream>
int fun(int a,int b);

有關詳細知識可以參看官方手冊;