1)
实现一个CLI/C++的Dll,在此Dll中包含一个RefClass能够被C#的exe调用。(实现过程:在VS中建立C++ CLR Class
library 的一个Project,然后增加一个类RefClass)代码如下:
refclass.h文件:
#pragma once namespace ClrCppDll { publicrefclass RefClass { public: RefClass(){} RefClass(int _x, int _y) : x(_x), y(_y) { } void PrintSelf(); private: int x; int y; }; }
refclass.cpp文件:
#include "stdafx.h" #include "refclass.h" usingnamespace System; usingnamespace ClrCppDll; void RefClass::PrintSelf() { System::Console::WriteLine("hello, i am a ref cpp class"); System::Console::WriteLine("x is {0}",x); System::Console::WriteLine("y is {0}",y); }
using System; using System.Collections.Generic; using System.Text; namespace CsharpTest { class Program { staticvoid Main(string[] args) { ClrCppDll.RefClass refClass =new ClrCppDll.RefClass(2,4); refClass.PrintSelf(); } } }
#pragma once namespace ClrCppDll { publicclass NativeClass { public: NativeClass(){} NativeClass(int _x, int _y) : x(_x), y(_y) {} void printSelf(); private: int x; int y; }; }
NativeClass.cpp文件:
#include "stdafx.h" #include <iostream> #include "nativeclass.h" usingnamespace ClrCppDll; void NativeClass::printSelf() { std::cout<<"hello,i am a native cpp class!"<<std::endl; std::cout<<"x is "<<x<<std::endl; std::cout<<"y is "<<y<<std::endl; }
问题:如果我们直接在NativeC++的exe调用上面CLI/C++中的NativeClass,会有问题,Error 1 error
C3381: 'CppClrDll::NativeClass' : assembly access specifiers are only
available in code compiled with a /clr
option d:\cppandcsharpinteractivetest\csharpcppcli\clrcppdll
\nativeclass.h 8,这是为什么那,我们想想我们一般的Native
C++的DLL的调用,都要将要被调用的Class或funtion导出才可以调用,想到这里我们也对我们的NativeClass进行导出。(怎么导出
可以看下面的代码)但是当增加了对NativeClass的导出,调用的时候仍然有上面的error,Error 1 error C3381:
'CppClrDll::NativeClass' : assembly access specifiers are only available
in code compiled with a /clr
option d:\cppandcsharpinteractivetest\csharpcppcli\clrcppdll
\nativeclass.h 9,最后只有查找资料(没有找到)问别人(没有问到),最后想到使用导出函数试试,一试果然可行啊,哈哈哈,so
Happy!其实后来发现是我加的导出
__declspec(dllexport)的位置不对,应该是在class关键字后面,总之导出类也是可以的。导出类的代码可以下载新的
sample,增加导出和导出的函数代码如下: