标签: c++ shared-libraries
是否可以导入共享对象(不用程序链接程序)并调用任何函数?
答案 0 :(得分:5)
是的,这是可能的。
Windows:使用LoadLibrary和GetProcAddress。
POSIX:使用dlopen和dlsym 有mini tutorial here。