当前位置: 代码迷 >> 综合 >> static stringstream 的问题 static std::stringstream 左操作,只第一次能成功!
  详细解决方案

static stringstream 的问题 static std::stringstream 左操作,只第一次能成功!

热度:76   发布时间:2024-01-05 00:07:38.0
//vs 2017, windowsvoid MyFun( int a, int b)
{static std::string strLog;static std::stringstream ss;// ss的操作,只第一次能成功!ss  << "a:"<< a<< ";b:" << b; ss >> strLog;ss.str("");strLog.clear();
}

 static std::stringstream ss;
 ss的 << 操作,只第一次能成功!

ss  << "a:"<< a<< ";b:" << b; 

  相关解决方案