调用exe-2

Posted wangbin-heng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调用exe-2相关的知识,希望对你有一定的参考价值。

 

技术图片  

 

 1 void CallExe::on_pushButton_clicked()
 2 {
 3     QProcess *process=new QProcess(this);
 4     connect(process, &QProcess::readyReadStandardOutput,
 5         [=]
 6     {
 7         QString str=process->readAllStandardOutput();
 8         ui.label->setText(str);
 9     });
10     
11     //out.exe    每秒输出一个数字到控制台。现在将值输出到label上
12     process->start("../../out/Win32/Debug/out.exe");
13 }

 

以上是关于调用exe-2的主要内容,如果未能解决你的问题,请参考以下文章

如何从片段 KOTLIN 中调用意图 [重复]

调用模板化成员函数:帮助我理解另一个 *** 帖子中的代码片段

从片段调用 Google Play 游戏服务

使用意图从另一个片段调用一个片段

Android片段生命周期:onResume调用了两次

onActivityResult 未在 Android API 23 的片段上调用