[C++]linux C++ main程序不退出
Posted FL1623863129
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C++]linux C++ main程序不退出相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <unistd.h>
using namespace std;
int main(int argc, char *argv[])
int flag=1;
for (;;)
// finished, break
if (flag <= 0)
break;
else
usleep(100000);
return 0;
也可以使用while循环。
以上是关于[C++]linux C++ main程序不退出的主要内容,如果未能解决你的问题,请参考以下文章