导出具有原始函数名称的 C++ 函数

export a c++ function with it's raw function name

本文关键字:函数 C++ 原始      更新时间:2023-10-16

我正在编写一个dll,它导出了一个函数

extern "C"
__declspec(dllexport)
std::list<string> create() {
return std::list<string>();
}

编译器抱怨:

错误 C2526:"创建":C 链接函数无法返回类C++"std::list<_Ty>

如果我删除外部"C",导出的函数名称将是:?create@@YA?AV?$list@PAUanalyzer@@V?$allocator@PAUanalyzer@@@std@@@std@@XZ

我希望名称干净,所以我添加了外部"C",现在它冲突

还有其他方法可以得到一个干净的函数名称吗?

谢谢。

当你说extern "C"时,你告诉编译器创建一个可以从C++以外的其他语言调用的函数(最明显的是C)。但是,除了C++之外,没有其他语言有std::list,因此它无法创建这样的函数,因为返回类型是C++中函数签名的一部分。如果你不创建一个具有 C 兼容返回类型(或参数)的函数,你就不能创建一个extern "C"函数。

如果要使用C++程序中的 DLL,则不需要extern "C"部分。无论如何,C++编译器和链接器将能够毫无问题地处理损坏的名称。

您可以返回指针而不是对象。

extern "C" __declspec(dllexport) std::list<std::string>* createAllocated()
{
    return new std::list<std::string>();
}

由于C++的性质,调用方需要具有兼容的 ABI。