我写了程序
#include<iostream>
using namespace std;
int n;
int main(int argc, char *argv[])
{
std::cout << "Before reading from cin" << std::endl;
// Below reading from cin should be executed within stipulated time
bool b=std::cin >> n;
if (b)
std::cout << "input is integer for n and it's correct" << std::endl;
else
std::cout << "Either n is not integer or no input for n" << std::endl;
return 0;
}
这里的 std::cin 语句将等待控制台输入并进入睡眠模式,直到我们提供一些输入并按 Enter 键。
我希望 std::cin 语句在 10 秒后超时(如果用户在 10 秒之间没有输入任何数据,那么编译器将开始执行 std::cin 语句下方的程序的下一条语句。
我能够使用多线程机制解决它。下面是我的代码:
#include<unistd.h>
#include<stdlib.h>
#include<pthread.h>
#include<iostream>
using namespace std;
void *thread_function(void *arg);
int input_value;
int main(int argc, char *argv[])
{
int res;
pthread_t a_thread;
void *thread_result;
res=pthread_create(&a_thread,NULL,thread_function,NULL);
if(res!=0){
perror("Thread creation error");
exit(EXIT_FAILURE);
}
//sleep(10);
cout<<"cancelling thread"<<endl;
res=pthread_cancel(a_thread);
cout<<"input value="<<input_value<<endl;
exit(EXIT_SUCCESS);
}
void *thread_function(void *arg)
{
int res;
res=pthread_setcancelstate(PTHREAD_CANCEL_ENABLE,NULL);
if(res!=0){
perror("Unable to set pthread to cancel enbable state");
exit(EXIT_FAILURE);
}
cin>>input_value;
pthread_exit(&input_value);
}
但在这里我面临一个问题。由于睡眠功能,用户输入值或不输入值,睡眠功能默认睡眠 10 秒。这是我落后的地方。
我该如何解决这个问题,比如使用(信号、二进制信号量等)。请把你的答案与我的解决方案联系起来(即多线程)。
任何信息都是最受欢迎的...