我有一个关于为type_t的函数调用设置值的快速问题。在我的项目中,我有一个参数化的构造函数(在函数内):
time_t ShippingStatus::m_getTime() {
//TimeUpdated already initialized
return TimeUpdated;
}
在这个类中有一个简单的get函数
location, status, timeUpdated
现在,s.m_getTime() = timeUpdated;
的值都是在这个main函数中传递的,我尝试做expression must be a modifiable lvalue
之类的操作,但收到的错误是:
location
我能够使用类似的get函数对status
和<link rel="prerender" href="//example/${exampleDto.exampleId}">
执行相同的操作,但为什么它不能与time_t一起使用?有没有办法解决这个问题?