我读过这可以使用std::this_thread::sleep_for和std::async来实现,但这对我不起作用。
这是要调用的函数:
bool Log::refresh_data()
{
std::this_thread::sleep_for( std::chrono::minutes( 1 ) );
std::vector<std::string> file_info = this->file.read_pending_if();
for( auto line : file_info )
{
this->append( line );
}
return true;
}
这是从另一个函数调用的。下面的代码中有两个使用失败的例子:
void MVC::refresh_data()
{
// Error C3867 'Log::refresh_data': non-standard syntax; use '&' to create a pointer to member
std::future<bool> retCode = std::async( this->model_log.refresh_data, 0 );
std::future<bool> retCode = std::async( this->model_log.refresh_data(), 0 );
}
最初,bool Log::refresh_data()是void Log::refresh_data()但std::async似乎不喜欢 void 返回...