system("calc.exe")
2、通过碧梁QProcess 阻塞调用
QProcess::execute("calc.exe")/QProcess::startDetached("calc.exe")
3、通过QProcess,非阻塞调用
QProcess *pro = new QProcess
pro->start("calc.exe")
注释:
1、前两种方法会阻塞进程,直到计算器程序结束,而第三种方法则不会阻塞进程,可以多任务运行。
2、QT在运行的时候,要启动qws服务尺虚,如果用前两种方法,运行的时候,要新开启一个qws,否则不能运行;而第三种方法,则不需要在开启qws,他和主进程公用一个qws。
3、第三种虽然不会阻塞,但是有可能在终端上看不到打印出来的信息。所以要在终端显示信息,可以考陵慧燃虑阻塞模式。
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)