如何解决“error C2365: “huidu”: 重定义;以前的定义是“数据变量””

昨天看了dll的相关知识,打算自己来实践下,于是结合OpenCV写了一个实现RGB2gray的函数,代码如下:

imgprocess.h

#pragma once
#include <string>
#define DLL_EXPORT_API extern "C" _declspec(dllexport)

//Function
DLL_EXPORT_API int Add(int a,int b);
DLL_EXPORT_API int huidu(string sImagePath);


//Class
class _declspec(dllexport) Math
{
public:
	int Multiply(int a,int b);
};

imgprocess.cpp

//#include "stdafx.h"
#include "imgprocess.h"
#include <cv.h>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace cv;
int Add(int a,int b)
{
	return a+b;
}

int  huidu(string sImagePath)
{
	Mat img=imread("Lena.png");
	Mat grayimg;
	cvtColor(img,grayimg,CV_BGR2GRAY);
	namedWindow("src");
	namedWindow("dst");
	imshow("src",img);
	imshow("dst",grayimg);
	waitKey(600);
	return 0;
}

int Math::Multiply(int a,int b)
{
	return a*b;
}
然后编译的时候,一直报错, error C2365: “huidu”: 重定义;以前的定义是“数据变量”,将鼠标放在huidu这个函数上,提示链接规范与前面的“huidu”(已声明:cpp里面的第12行)不兼容,检查了代码,没有问题,于是就开始度娘了,给出的好多都是 error C2365: “XXX“: 重定义;以前的定义是“函数”,回答都是说函数重定义或者说是与MFC内存管理冲突,都没有解决我的问题。再看我的错误,发现还提示string未声明的标识符,咦,头文件加了啊,难道是没加命名空间?于是在imgprocess.h中加上:

#pragma once
#include <string>
#define DLL_EXPORT_API extern "C" _declspec(dllexport)

using namespace std;
//Function
DLL_EXPORT_API int Add(int a,int b);
DLL_EXPORT_API int huidu(string sImagePath);


//Class
class _declspec(dllexport) Math
{
public:
	int Multiply(int a,int b);
};

编译成功了!成功生成了dll和lib文件。我的思维定势一直将命名空间加在cpp中,因为这里定义了一个string的变量,所以也需要!特此记录!

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值