本文主要是介绍c++ list front 的错误,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
某些些情况下,用
if (!m_RecordLenList.empty()) {printf(" cmRecordInfo.wSize = *m_RecordLenList.begin(); \n ");cmRecordInfo.wSize = *m_RecordLenList.begin();}
代替
list.front()
可解决。
另,不使用
if (m_RecordInfoList.size()== 0)
而应该
if (m_RecordInfoList.empty())
ok。继续修改windows到vxworks下的代码了。
这篇关于c++ list front 的错误的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!