在工作中,我必须在两个不同的dll中调用两个具有相同名称的类。 但我不知道实例化了哪个类。
例如:
class__desllpec(export) C{}
class__desllpec(export) C{}
int main(){
C c; //
}
我的问题是:
谢谢你的帮助。
我已阅读问题Calling two functions with the same name from two different C DLLs,我不确定答案是否过时。
更新
评论回答:
LoadLibrary()
and GetProcess()
获取特定功能。但我无法弄清楚将实例化哪个类以及为什么。