欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Qt程序中调用C#编写的dll(推荐)

程序员文章站 2023-10-31 09:22:10
1、打开visual studio,新建一个c#的class library项目(这里选择的是.net framework 4),项目名为csharpdll。2、由于默认没有引入forms等ui库,先...

1、打开visual studio,新建一个c#的class library项目(这里选择的是.net framework 4),项目名为csharpdll。

Qt程序中调用C#编写的dll(推荐)

2、由于默认没有引入forms等ui库,先在reference中添加引用system.windows.forms以便可以在测试中使用messagebox等。

Qt程序中调用C#编写的dll(推荐)

3、最终c#编写的dll的源代码如下图所示,命名空间为csharpdll,公共类为csharpclass。

using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.windows.forms;

namespace csharpdll
{
 public class csharpclass
 {
 public csharpclass() { }
 public int add(int a , int b)
 {
 return a + b;
 }

 public void substract( int a , int b , ref int c)
 {
 c = a - b;
 }

 public static void showbox(string str)
 {
 messagebox.show("c#:" + str);
 }
 }
}

里面包含一个加法add,一个减法substract(为了测试指针,所以在减法的返回类型是void,而把计算结果通过ref参数c给返回),一个showbox方法(里面采用c#的messagebox对话框显示用户输入的参数字串)

4、对project进行release build,在release目录下生成了csharpdll.dll(待会用到)。

5、关闭csharpdll项目,另外新建一个c++ clr类型的class library项目(选择与c#项目相同的.net framework 4),项目名称为cppdll。

Qt程序中调用C#编写的dll(推荐)

一开始我用的vs2019,发现vs2019好像无法新建 c++ clr类型的class library项目了,所以学习微软的技术一定要小心,学习主流的支持很久的技术,尽量不要学习新出的技术,如果必须学新技术,一定要认真考量,一些边缘化的技术一定不要学习,没准哪天微软就不维护了。

6、选择project->cppdll properties…,在弹出的属性页面选择“add new reference..”,点击“browsing.”后选择csharpdll项目中release目录下的csharpdll.dll。

Qt程序中调用C#编写的dll(推荐)

7、选择csharpdll.dll后,可以看到在项目属性的references中出现了csharpdll这个library。

8、在cppdll项目中的cppdll.h中利用 _declspec(dllexport)导出对应的3个接口函数add,substract,showbox 。需要using namespace system::reflection,对于这里的showbox,其参数不能采用csharpdll里面的showbox参数的string类型,而是使用const char* 类型。

主要代码如下所示:

// cppdll.h

#pragma once

using namespace system;
using namespace system::reflection;

__declspec(dllexport) int add(int a, int b)
{
	csharpdll::csharpclass obj;
	return obj.add(a, b);
}

__declspec(dllexport) void substract(int a, int b, int *c)
{
	csharpdll::csharpclass obj;
	obj.substract(a, b, *c);
}

__declspec(dllexport) void showbox(const char* content)
{
	csharpdll::csharpclass obj;
	string^ str = gcnew string(content);
	obj.showbox(str);
}

namespace cppdll {

	public ref class class1
	{
		// todo: 在此处添加此类的方法。
	};
}

9、选择release方式build cppdll项目,在release文件夹中生成了cppdll.dll文件,可以看到同时其也将引用的csharpdll.dll也给拷贝到release文件夹中了。

Qt程序中调用C#编写的dll(推荐)

10、接下来在qt中进行调用, 在qtcreator中新建一个testcsharpdll gui项目,编译器选的mingw。通过vs自带的命令行工具中的dumpbin工具可以查看cppdll.dll导出的函数接口。

dumpbin -exports (+dll路径)

Qt程序中调用C#编写的dll(推荐)

在testcsharpdll工程中通过typedef定义函数指针,同时采用qlibrary动态加载并resolve函数。

在这里.dll的路径设为当前目录下“./cppdllmingw.dll”,也就是编译好的程序exe同一目录下的dll,去resolve由普通导出方式的接口即“?add@@yahhh@z”。

主要代码如下所示:

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include<qlibrary>
#include<qmessagebox>
typedef int (*x_add)(int a , int b);
typedef void (*x_substract)(int a , int b , int* c);
typedef void (*x_showbox)(const char* content);

mainwindow::mainwindow(qwidget *parent) :
 qmainwindow(parent),
 ui(new ui::mainwindow)
{
 ui->setupui(this);
}

mainwindow::~mainwindow()
{
 delete ui;
}

//add
void mainwindow::on_pushbutton_clicked()
{
 int a = ui->lineedit->text().toint();
 int b = ui->lineedit_2->text().toint();
 qlibrary library("./cppdll.dll");
 if(library.load()){
 x_add add = (x_add)library.resolve("?add@@yahhh@z");
 if(add){
 qstring str = qstring::number(add(a , b));
 qmessagebox::information(this , "call add from dll" , str);
 }
 }
}

//sub
void mainwindow::on_pushbutton_2_clicked()
{
 int a = ui->lineedit_3->text().toint();
 int b = ui->lineedit_4->text().toint();
 int c = 0;
 qlibrary library("./cppdll.dll");
 if(library.load()){
 x_substract sub = (x_substract)library.resolve("?substract@@yaxhhpah@z");
 if(sub){
 sub(a , b , &c);
 qstring str = qstring::number(c);
 qmessagebox::information(this , "call sub from dll" , str);
 }
 }
}

//showbox
void mainwindow::on_pushbutton_3_clicked()
{
 qlibrary library("./cppdll.dll");
 if(library.load()){
 x_showbox showbox = (x_showbox)library.resolve("?showbox@@yaxpbd@z");
 if(showbox){
 showbox("showbox!");
 }
 }
}

编译testcsharpdll工程,将cppdll.dll和csharpdll.dll复制到同一目录下,执行testcsharpdll.exe,可看出点击按钮后,通过qlibrary进行动态resolve,均正常调用。

Qt程序中调用C#编写的dll(推荐)

 

调用add函数

Qt程序中调用C#编写的dll(推荐)

 

调用sub函数

Qt程序中调用C#编写的dll(推荐) 

调用showbox函数

最好是将相关dll置于同一目录下运行,不然会出现“未能加载文件或程序集”的异常。针对.lib链接方式,理应是置于同一目录下。而针对qlibrary进行resolve方式,可能通常一开始的想法是,cppdll.dll和csharpdll.dll放在与程序不同目录的地方,程序中利用了qlibrary指定了cppdll.dll的方式进行加载,而cppdll.dll和csharpdll.dll,因此程序调用cppdll.dll里面的函数时,cppdll.dll会找到与cppdll.dll同一目录下的csharpdll.dll,然而cppdll.dll在被程序进行加载时,其继承了程序的环境变量,因此会从程序的当前目录下去查找,所以最好还是将cppdll.dll和csharpdll.dll放置于程序同一目录下,同时qlibrary加载当前目录下的cppdll.dll。当然,部署到另外一台机器上时,目标机器还是需要安装.net framework,其版本至少不能低于当前csharpdll.dll所使用的版本。

总结

到此这篇关于qt程序中调用c#编写的dll的文章就介绍到这了,更多相关qt 调用c#编写的dll内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!