如何在QT中实现C语言中调用C++的函数

如何在QT中实现C语言中调用C++的函数,第1张

C source file的实现。

#include "obj.h"

int main(const int argc, const char **argv){

void *temp_obj = getObj(100)

printString(temp_obj)//实现C语言调用QT/C++UI界面

return (0)

}

写一个C++ source file和c source file都可以共同包含的头文件,如下所示。

#include <stdint.h>

#ifdef __cplusplus

class Obj{

public:

Obj(int32_t a=50)

~Obj()

std::string toString()

private:

int32_t k

}

#endif

#ifdef __cplusplus

extern "C" {

#endif

void* getObj(int32_t a)

void destroyObj(void *obj)

void printString(void *obj)

#ifdef __cplusplus

}

#endif

C++ source file的实现,其中C语言函数是供C source file调用的。

#include <iostream>

#include <sstream>

#include <iomanip>

#include <stdint.h>

#include "obj.h"

Obj::Obj(int32_t a){

k = a <<1

}

Obj::~Obj(){

/* don't really need to do anything here */

/* k = 0 only for example purposes */

k = 0

}

std::string Obj::toString(){

std::ostringstream os

os <<"Obj is currently: " <<this->k <<std::endl

return os.str()

}

void* getObj(int32_t a){

Obj *out = new Obj(a)

return ((void*)out)

}

void destroyObj(void* obj){

delete (((Foo*)obj))

}

void printString(void *obj){

std::string s = ((Obj*)obj)->toString()

std::cout <<s

}

Makefile

make file的实现。

CC ?= gcc

CXX ?= g++

CFLAGS = -O0 -g

CXXFLGS = -00 -g

OBJ = main obj

OBJS = $(addsuffix .o,$(OBJ))

all:

make compile

compile:

make $(OBJS)

make objexe

fooexe: $(OBJS)

$(CXX) -o fooexe $(OBJS)

main.o: main.c

$(CC) -c -o main.o main.c

obj.o: obj.cpp

$(CXX) -c -o obj.o obj.cpp

clean:

rm -rf $(OBJS) objexe *.dSYM

不需要做任何改动g就可以使用标准的c/C++

头文件

了。

起始

在QT中使用cout一类的进行输出

就已经是引入标准库了。

而且

类似于QString等,也是继承于标准string的


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12018530.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存