我需要在我的对话框中显示一些数据(使用 MFC,Visual C++ 2010)
在对话框中使用std::cout
和std::setw
的最简单方法是什么?
我已经找到了一些cout
的方法(不确定它们是否有效),但对setw
没有任何帮助......
谢谢
使用 std::stringstream 代替 cout。
std::stringstream out;
out << std::setw(5) << 100 << std::endl;
// and display out.str() in dialog box