#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的
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)