vc 中调用COM组件的方法

时间:2020-12-13 20:56:06

需求:
1.创建myCom.dll,该COM只有一个组件,两个接口:
   IGetRes--方法Hello(),
   IGetResEx--方法HelloEx()

2.在工程中导入组件或类型库

vc 中调用COM组件的方法 #import "组件所在目录myCom.dll" no_namespace

vc 中调用COM组件的方法   #import "类型库所在目录myCom.tlb"
vc 中调用COM组件的方法   using namespace MYCOM;

方法一:

vc 中调用COM组件的方法   CoInitialize(NULL);
vc 中调用COM组件的方法   CLSID clsid;
vc 中调用COM组件的方法   CLSIDFromProgID(OLESTR("myCom.GetRes"),&clsid);
vc 中调用COM组件的方法   CComPtr<IGetRes> pGetRes;//智能指针
vc 中调用COM组件的方法   pGetRes.CoCreateInstance(clsid);
vc 中调用COM组件的方法   pGetRes->Hello();
vc 中调用COM组件的方法   pGetRes.Release();//小心哦!!请看最后的“注意”
vc 中调用COM组件的方法   CoUninitialize();

方法二:

vc 中调用COM组件的方法   CoInitialize(NULL);
vc 中调用COM组件的方法   CLSID clsid;
vc 中调用COM组件的方法   HRESULT hr=CLSIDFromProgID(OLESTR("myCom.GetRes"),&clsid);
vc 中调用COM组件的方法   IGetRes *ptr;
vc 中调用COM组件的方法   hr=CoCreateInstance(clsid,NULL,CLSCTX_INPROC_SERVER,
vc 中调用COM组件的方法                 __uuidof(IGetRes),(LPVOID*)&ptr);
vc 中调用COM组件的方法   ptr->Hello();
vc 中调用COM组件的方法   CoUninitialize();

方法三:

vc 中调用COM组件的方法CoInitialize(NULL);
vc 中调用COM组件的方法   HRESULT hr;
vc 中调用COM组件的方法   CLSID clsid;
vc 中调用COM组件的方法   hr=CLSIDFromProgID(OLESTR("myCom.GetRes"),&clsid);
vc 中调用COM组件的方法   IGetRes* ptr;
vc 中调用COM组件的方法   IGetResEx* ptrEx;
vc 中调用COM组件的方法   //使用CoCreateClassObject创建一个组件(特别是mutilThreads)的多个对象的
vc 中调用COM组件的方法     时候,效率更高.
vc 中调用COM组件的方法   IClassFactory* p_classfactory;
vc 中调用COM组件的方法   hr=CoGetClassObject(clsid,CLSCTX_INPROC_SERVER,
vc 中调用COM组件的方法                       NULL,IID_IClassFactory, 
vc 中调用COM组件的方法                       (LPVOID*)&p_classfactory);
vc 中调用COM组件的方法   p_classfactory->CreateInstance(NULL,__uuidof(IGetRes),
vc 中调用COM组件的方法                                          (LPVOID*)&ptr);
vc 中调用COM组件的方法   p_classfactory->CreateInstance(NULL,__uuidof(IGetResEx),
vc 中调用COM组件的方法                                          (LPVOID*)&ptrEx);
vc 中调用COM组件的方法   ptr->Hello();
vc 中调用COM组件的方法   ptrEx->HelloEx();
vc 中调用COM组件的方法   CoUninitialize();
vc 中调用COM组件的方法

方法四:
直接从dll中得到DllGetClassObject,接着生成类对象及类实例(这方法可以
使组件不用在注册表里注册,这是最原始的方法,但这样做没什么意义,至少失去了COM
对用户的透明性),不推荐使用.

vc 中调用COM组件的方法)
vc 中调用COM组件的方法vc 中调用COM组件的方法   vc 中调用COM组件的方法{
vc 中调用COM组件的方法   IClassFactory* pcf = NULL;
vc 中调用COM组件的方法   HRESULT hr=(fnHello)(CLSID_GetRes,IID_IClassFactory,(void**)&pcf);
vc 中调用COM组件的方法   if (SUCCEEDED(hr) && (pcf != NULL))
vc 中调用COM组件的方法vc 中调用COM组件的方法   vc 中调用COM组件的方法{
vc 中调用COM组件的方法   IGetRes* pGetRes = NULL;
vc 中调用COM组件的方法   hr = pcf->CreateInstance(NULL, IID_IFoo, (void**)&pGetRes);
vc 中调用COM组件的方法   if (SUCCEEDED(hr)   && (pFoo != NULL))
vc 中调用COM组件的方法vc 中调用COM组件的方法   vc 中调用COM组件的方法{
vc 中调用COM组件的方法   pGetRes->Hello();
vc 中调用COM组件的方法   pGetRes->Release();
vc 中调用COM组件的方法   }
vc 中调用COM组件的方法   pcf->Release();
vc 中调用COM组件的方法   }
vc 中调用COM组件的方法   } 
vc 中调用COM组件的方法   FreeLibrary(hdllInst);
vc 中调用COM组件的方法

方法五:
通过ClassWizard利用类型库生成包装类,不过前提是com组件的接口必须是派
生自IDispatch,具体方法:
    调出添加类向导(.NET中),选择类型库中MFC类,打开,选择"文件",选择
"myCom.dll"或"myCom.tlb",接下来会出来该myCom中的所有接口,选择你想
生成的接口包装类后,向导会自动生成相应的.h文件.这样你就可以在你的MFC中
像使用普通类那样使用组件了.(CreateDispatch("myCom.GetRes") 中的参数就是ProgID通过Clsid在注册表中可以查询的到)

vc 中调用COM组件的方法)
vc 中调用COM组件的方法vc 中调用COM组件的方法   vc 中调用COM组件的方法{
vc 中调用COM组件的方法   getRest.Hello();
vc 中调用COM组件的方法   getRest.ReleaseDispatch();
vc 中调用COM组件的方法   }
vc 中调用COM组件的方法   CoUninitialize();
vc 中调用COM组件的方法

注意:
COM中的智能指针实际上是重载了->的类,目的是为了简化引用记数,几不需要程序
员显示的调用AddRef()和Release(),但是为什么我们在Method 1中
pGetRes.Release(),问题在与,我们的智能指针pGetRes生命周期的结束是在
CoUninitialize()之后,CoInitialize所开的套间在CoUninitialize()后已经被
关闭,而pGetRes此时发生析构,导致了程序的崩溃,解决这个问题的另一个方法是

vc 中调用COM组件的方法CoInitialize(NULL);
vc 中调用COM组件的方法   CLSID clsid;
vc 中调用COM组件的方法   CLSIDFromProgID(OLESTR("myCom.GetRes"),&clsid);
vc 中调用COM组件的方法vc 中调用COM组件的方法   vc 中调用COM组件的方法{
vc 中调用COM组件的方法   CComPtr<IGetRes> pGetRes;//智能指针
vc 中调用COM组件的方法   pGetRes.CoCreateInstance(clsid);
vc 中调用COM组件的方法   pGetRes->Hello();
vc 中调用COM组件的方法   }
vc 中调用COM组件的方法   CoUninitialize();
vc 中调用COM组件的方法

以上就是COM的5中方法,当然具体怎么使用还是在于程序的环境,加以琢磨....