我正在尝试在多个文件上创建一个程序来读取时间,但是我无法以所需的格式显示时间。更具体地说,setfill
似乎给我带来了麻烦。
以下是编译时收到的非常长的错误消息的开头:
error: no match for ‘operator<<’ in ‘std::operator<< [with _CharT = char,
_Traits = std::char_traits<char>](((std::basic_ostream<char,
std::char_traits<char> >&)(& std::cout)), std::setw(2)) << std::setfill
[with _CharT = const char*](((const char*)"0"))’
现在,只有在我的成员函数中有setfill
时才会显示此消息。如果我删除setfill
,则输出没有问题,除非格式错误。
成员函数是:
Void Time::print()
{
cout << setw (2) << setfill ("0") << hours << ":";
cout << setw (2) << setfill ("0") << minutes << ":";
cout << setw (2) << setfill ("0") << seconds << endl;
}
要明确的是,我已将iomanip
与setw
包含在一起,并没有任何问题。
感谢。
答案 0 :(得分:6)
setfill接受一个char,它应该是'0'
而不是"0"
答案 1 :(得分:5)
另外,如果你使用wstringstream,setfill想要一个wchar。
比较
std::stringstream ss;
ss << std::setw(2) << std::setfill('0') << hours << ":";
与
std::wstringstream ss;
ss << std::setw(2) << std::setfill(L'0') << hours << ":";
答案 2 :(得分:2)
你应该:
cout << setw (2) << setfill ('0') << hours << ":";
cout << setw (2) << setfill ('0') << minutes << ":";
cout << setw (2) << setfill ('0') << seconds << endl;
答案 3 :(得分:1)
setfill需要char
,而不是char*
,因此它应为'0'
。