在__declspec之前或之后返回类型?

时间:2012-11-28 20:31:29

标签: c++ windows visual-studio declaration

我应该使用

bool __declspec(dllexport) function()
{ 
    return true;
} 

__declspec(dllexport) bool function()
{
    return true;
}

这两者有什么区别? 这会影响函数的执行方式或从应用程序调用时返回的内容吗? (此代码适用于DLL)。

1 个答案:

答案 0 :(得分:2)

如果两者都被编译器接受,那么很难看出它们是如何成为除了完全等价的东西之外的其他东西。