visual-studio - c#怎么调用c++的类和函数
PHPz
PHPz 2017-04-17 14:21:50
0
2
485
PHPz
PHPz

学习是最好的投资!

全部回覆(2)
PHPzhong

一種方式是託管 c++,但是有可能對程式碼更改較大,
另一種是連結

迷茫

check out C++/CLI (aka managed C++). Write a wrapper that uses your native class as a member

最好給每一個用到的native concrete class 寫一個對應的Interface,在Managed C++ 裡用 INativeCore 而不是NativeCore ,來避免一些坑

// in your native core:

// define an interface wrapper for your native core
class INativeCore{
// ...
}
class NativeCore: public INativeCore{
// ... 
}

// in your C++/CLI code
ref public class ManagedClass{
private:
  INativeCore* pCore; // delegate all method calls to native core
public:
  void foo(){
  pCore->foo(); 
}
// ... other methods
}

equivalent SO question

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!