Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的对话框上显示一些数据(使用 MFC,Visual C++ 2010)
在对话框中使用std::cout和最简单的方法是什么?std::setw
std::cout
std::setw
我找到了一些方法cout(不确定它们是否会起作用),但没有setw...
cout
setw
谢谢
使用 std::stringstream 代替 cout。
std::stringstream out; out << std::setw(5) << 100 << std::endl; // and display out.str() in dialog box