(摘)C++和C#相互調用COM組件的方法簡介

1、在VS2005中,C#編寫DLL並使用C++調用

2、在VS2005中C#編寫的COM組件,使用VC6.0調用

3、在VC6.0中編寫COM組件,使用VS2005 C#調用

4、在VC6.0中編寫COM組件,使用VC6.0調用

其中每個類型都寫了兩個程序,一個爲COM組件程序,一個爲C++和C#相互調用COM組件調用程序

程序實現:

1、在VS2005中,C#編寫DLL並使用C++調用

(1)C#編寫DLL程序

建立C#編寫的DLL程序AddDll,項目類型爲:類庫

程序代碼:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace AddDll
  5. {
  6. public class Add
  7. {
  8. public int iadd(int a, int b)
  9. {
  10. int c = a + b;
  11. return c;
  12. }
  13. }
  14. }  

(2)C++編寫調用程序

建立C++的Win32控制檯應用程序UseDll,項目類型爲:Win32控制檯應用程序

配置:右鍵點擊解決方案資源管理器中的UseDll,選擇“屬性”,將公共語言運行庫支持設置爲“公共語言運行庫支持(/clr)”

程序代碼:

  1.  #include "stdafx.h"
  2. #include "stdio.h"
  3. #using "..\debug\AddDll.dll"
  4. using namespace AddDll;
  5. int _tmain(int argc, _TCHAR* argv[])
  6. {
  7. int result;
  8. Add ^add = gcnew Add();
  9. result = add->iadd(10,90);
  10. printf("%d",result);
  11. scanf("%s");
  12. return 0;
  13. }  

2、在VS2005中C#編寫的COM組件,使用VC6.0調用

(1)VS2005中使用C#編寫COM組件

建立C#編寫的COM組件,項目類型爲類庫

配置:右鍵點擊解決方案資源管理器中的AddCom,選擇“屬性”,選擇“生成”,選擇“爲COM Interop註冊(_P)”

打開AssemblyInfo.cs文件,設置[assembly: ComVisible(true)]

這用就可以生成AddCom.tlb文件

程序代碼:

  1.  using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. namespace AddCom
  6. {
  7. //可以通過//菜單的 “工具/guid生成”。
  8. //注意要選擇Define Guid{….}格式,並全//部保存下來,保存到哪都行,記事本呀什麼的。
  9. //因爲在做VC程序/////////的時候要用到的。
  10. [Guid("298D881C-E2A3-4638-B872-73EADE25511C")]
  11. public interface AddComInterface
  12. {
  13. [DispId(1)]
  14. int iadd(int a, int b);
  15. [DispId(2)]
  16. float ladd(float a, float b);
  17. }
  18. [Guid("2C5B7580-4038-4d90-BABD-8B83FCE5A467")]
  19. [ClassInterface(ClassInterfaceType.None)]
  20. public class AddComService : AddComInterface
  21. {
  22. public AddComService()
  23. {
  24. }
  25. public int iadd(int a, int b)
  26. {
  27. int c = 0;
  28. c = a + b;
  29. return c;
  30. }
  31. public float ladd(float a, float b)
  32. {
  33. float c = 0;
  34. c = a + b;
  35. return c;
  36. }
  37. }
  38. }  

(2)VC6.0編寫調用程序

使用VC6.0編寫建立MFC應用程序UseCom,項目類型爲MFC AppWizard(exe)

在stdafx.h添加:

  1.  #import "AddCom.tlb"
  2. using namespace AddCom;
  3. 程序代碼:
  4. void CUseComDlg::OnButtonUse()
  5. {
  6. // TODO: Add your control notification handler code here
  7. int dresult;
  8. float fresult;
  9. CString strResult;
  10. CoInitialize(NULL);//NULL換成0也可以
  11. AddCom::AddComInterfacePtr p_Add(__uuidof(AddComService));
  12. dresult = p_Add->iadd(1,2);
  13. fresult = p_Add->fadd(1.2,2.3);
  14. strResult.Format("int:%d \nfloat:%f",dresult,fresult);
  15. MessageBox(strResult,"計算結果",MB_OK);
  16. CoUninitialize();
  17. }  

3、在VC6.0中編寫COM組件,使用VS2005 C#調用

(1)VC6.0編寫COM使用VC6.0建立COM組件,

工程類型:ATL COM AppWizard

程序代碼:

接口:

  1.  interface IAdd : IDispatch
  2. {
  3. [id(1), helpstring("method iadd")] HRESULT iadd([in]int a, [in]int b, [out]int * c);
  4. [id(2), helpstring("method fadd")] HRESULT fadd([in]float a, [in]float b, [out]float * c);
  5. [id(3), helpstring("method isub")] HRESULT isub([in]int a, [in]int b, [out]int * c);
  6. };
  7. 實現:STDMETHODIMP CAdd::iadd(int a, int b, int *c)
  8. {
  9. // TODO: Add your implementation code here
  10. *c = a + b;
  11. return S_OK;
  12. }
  13. STDMETHODIMP CAdd::fadd(float a, float b, float *c)
  14. {
  15. // TODO: Add your implementation code here
  16. *c = a + b;
  17. return S_OK;
  18. }
  19. STDMETHODIMP CAdd::isub(int a, int b, int *c)
  20. {
  21. // TODO: Add your implementation code here
  22. *c = a - b;
  23. return S_OK;
  24. }  

(2)VS2005使用C#編寫調用程序(網站程序)

使用VS2005建立網站UseCom

配置:在解決方案資源管理器中的主目錄點擊右鍵,選擇添加引用,選擇COM,添加剛剛建立的AddCom 1.0 Type Library

在程序中要using編寫的COM組件:using ADDCOMLib;

程序代碼:

  1.  using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Web;
  5. using System.Web.Security;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8. using System.Web.UI.WebControls.WebParts;
  9. using System.Web.UI.HtmlControls;
  10. using ADDCOMLib;
  11. public partial class _Default : System.Web.UI.Page
  12. {
  13. protected void Page_Load(object sender, EventArgs e)
  14. {
  15. }
  16. protected void ButtonCom_Click(object sender, EventArgs e)
  17. {
  18. Add add = new Add();
  19. int iresult;
  20. float fresult;
  21. int sresult;
  22. add.IAdd(10, 20, out iresult);
  23. add.fadd((float)1.2,(float)2.3, out fresult);
  24. add.isub(100, 10, out sresult);
  25. TextBoxResult.Text = iresult.ToString();
  26. TextBoxRe2.Text = fresult.ToString();
  27. TextBoxRe3.Text = sresult.ToString();
  28. }
  29. }  

4、在VC6.0中編寫COM組件,使用VC6.0調用

(1)VC6.0編寫COM組件使用VC6.0建立COM組件,

工程類型:ATL COM AppWizard

程序代碼:

接口:

  1.  interface IAdd : IDispatch
  2. {
  3. [id(1), helpstring("method iadd")] HRESULT iadd([in]int a, [in]int b, [out]int * c);
  4. [id(2), helpstring("method fadd")] HRESULT fadd([in]float a, [in]float b, [out]float * c);
  5. [id(3), helpstring("method isub")] HRESULT isub([in]int a, [in]int b, [out]int * c);
  6. };
  7. 實現:STDMETHODIMP CAdd::iadd(int a, int b, int *c)
  8. {
  9. // TODO: Add your implementation code here
  10. *c = a + b;
  11. return S_OK;
  12. }
  13. STDMETHODIMP CAdd::fadd(float a, float b, float *c)
  14. {
  15. // TODO: Add your implementation code here
  16. *c = a + b;
  17. return S_OK;
  18. }
  19. STDMETHODIMP CAdd::isub(int a, int b, int *c)
  20. {
  21. // TODO: Add your implementation code here
  22. *c = a - b;
  23. return S_OK;
  24. }  

(2)VC6.0編寫調用程序

使用VC6.0建立MFC應用程序UseCOM,調用剛剛建立的COM組件

將上面程序AddCom生成的AddCom.dll放入本程序的工程目錄和程序生成目錄中

在StdAfx.h中加入:

#import "AddCom.dll" no_namespace

程序代碼:

  1.  void CUseComDlg::OnBUTTONUse()
  2. {
  3. // TODO: Add your control notification handler code here
  4. CString strResult;
  5. CoInitialize(NULL);//NULL換成0也可以
  6. IAddPtr m_add = NULL;
  7. HRESULT hr = S_OK;
  8. hr = m_add.CreateInstance(__uuidof(Add));
  9. int d_a = 90;
  10. int d_b = 10;
  11. int d_c;
  12. int d_d;
  13. float f_a = 1;
  14. float f_b = 2;
  15. float f_c;
  16. m_add->_IAdd(d_a,d_b,&d_c);
  17. m_add->fadd(f_a,f_b,&f_c);
  18. m_add->isub(d_a,d_b,&d_d);
  19. strResult.Format("返回結果:%d; %f; %d",d_c,f_c,d_d);
  20. MessageBox(strResult,"結果",MB_OK);
  21. m_add.Release();
  22. m_add = NULL;
  23. CoUninitialize();
  24. }  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章