Boost 1.61新增了一个DLL库,跟Qt中的QLibrary类似,提供了跨平台的动态库链接库加载.调用等功能.http://www.boost.org/users/history/version_1_61_0.html 编写一个Test.dll,导出方法Add INT WINAPI Add(INT x, INT y) { return x + y; } 加载.检查导出方法是否存在.调用方法.卸载应该是最常用的功能了. int main() { auto libPath = "D:\\Tes…