静态库的使用

静态库的使用

Luo Weifeng  //1:15 2009/9/2

步骤:

1.在code::blocks中新建Static library 工程 在仅有的main.cpp中放置你所有想要包含的函数

2.编译……成功

3.切换到工程目录下找出生成的libname.a,则这个就是静态库

使用:

在code::blocks下建立c++工程,如下设置:

1.把你的lib文件链接进来 setting->compiler and debugger->link setting->add 加载你的libname.a 的静态库文件

2.在使用时添加extern "C" int SampleAddInt (int, int); 即导入你要使用的函数,可以一次导入多个 eg:

#include <iostream> using namespace std; extern "C" int SampleAddInt (int, int); int main() { SampleAddInt (1,2); cout << "Hello world!" << endl; return 0; } 

3.编译……成功

你可能感兴趣的:(c,library)