标签: c++ windows visual-studio declaration
我应该使用
bool __declspec(dllexport) function() { return true; }
或
__declspec(dllexport) bool function() { return true; }
这两者有什么区别? 这会影响函数的执行方式或从应用程序调用时返回的内容吗? (此代码适用于DLL)。
答案 0 :(得分:2)
如果两者都被编译器接受,那么很难看出它们是如何成为除了完全等价的东西之外的其他东西。