这是我的代码。
#include<iostream>
int main()
{
std::string str;
while(true)
{
std::cout<<"enter string \n";
alarm(3);
getline(std::cin,str);
// calling another function in some other class,
and return to here (If not entered any string in 3 sec)
}
return 0;
}
2 秒后它退出我的程序。但是,我想继续调用另一个函数并返回相同的 getline()。是否可以??谢谢