我正在尝试为C++课程编写一个小类库.
我想知道是否有可能在我的共享对象中定义一组类,然后直接在我的主程序中使用它们来演示库.有任何技巧吗?我记得很久以前(在我开始编程之前)读过这个C++类只能用于MFC .dll而不是普通的,但这只是windows端.
C++类在.so共享库中工作正常(它们也适用于Windows上的非MFC DLL,但这不是你的问题).它实际上比Windows更容易,因为您不必显式地从库中导出任何符号.
本文档将回答您的大部分问题:http://people.redhat.com/drepper/dsohowto.pdf
要记住的主要事项是-fPIC
在编译时使用选项,-shared
在链接时使用选项.你可以在网上找到很多例子.
这是我的解决方案,它符合我的预期.
cat.hh:
#includeclass Cat { std::string _name; public: Cat(const std::string & name); void speak(); };
cat.cpp:
#include#include #include "cat.hh" using namespace std; Cat::Cat(const string & name):_name(name){} void Cat::speak() { cout << "Meow! I'm " << _name << endl; }
main.cpp:
#include#include #include "cat.hh" using std::cout;using std::endl;using std::string; int main() { string name = "Felix"; cout<< "Meet my cat, " << name << "!" < 汇编
您首先编译共享库:
$ g++ -Wall -g -fPIC -c cat.cpp $ g++ -shared -Wl,-soname,libcat.so.1 -o libcat.so.1 cat.o然后使用库中的类编译主可执行文件或C++程序:
$ g++ -Wall -g -c main.cpp $ g++ -Wall -Wl,-rpath,. -o main main.o libcat.so.1 # -rpath linker option prevents the need to use LD_LIBRARY_PATH when testing $ ./main Meet my cat, Felix! Meow! I'm Felix $
此代码显示为跨共享库的C++类的"陷阱"之一.通过在'shared'接口中使用STL类意味着库和应用程序都在编译它们自己的STL类'string'的实现.如果这两个项目在同一台机器上使用相同的编译器同时编译,那么它们看起来都很好.编译库,等待18个月,然后编译应用程序,它可能会工作.但是没有保证.将二进制文件中的共享库分发给其他开发人员,您将遇到"问题"