我最近读到,C ++ 14中的s
,h
,ms
等字面值已放入命名空间std::literals
。因此,如果我要使用它们,那么我应该包含命名空间或使用std::literals::
来表示这些后缀。但是,当我尝试使用以下程序(cpp.sh/9ytu)而不使用上述任何一项时,我得到了所需的输出: -
#include <iostream>
#include <thread>
using namespace std;
int main()
{
auto str = "He is there"s;
auto timegap = 1s;
cout << "The string is :-" << endl;
this_thread::sleep_for(timegap);
cout << str;
return 0;
}
/*Output:-
The string is :-
He is there
*/
正如您所看到的,我还没有包含任何namespace
或std::literals::
我的程序正常运行。我在 Orwell DevC ++ , C ++ Shell , Coliru &amp;到处都有相同的输出。有什么问题?
答案 0 :(得分:5)
literals
和chrono_literals
是内联命名空间 - 在这种特殊情况下请参阅[time.syn]:
inline namespace literals {
inline namespace chrono_literals {
// 20.12.5.8, suffixes for duration literals
constexpr chrono::hours h(unsigned long long);
[…]
因此,由于using namespace std;
,找到了所有UDL。