当前位置:  开发笔记 > 编程语言 > 正文

使用没有std :: literals的后缀

如何解决《使用没有std::literals的后缀》经验,为你挑选了1个好方法。

最近,我读了文字就足够像s,h,ms等在C++ 14已投入的命名空间std::literals.因此,如果我要使用它们,那么我应该包含命名空间或用于std::literals::表示这些后缀.然而,当我尝试以下程序(cpp.sh/9ytu)而不使用上述任何一项时,我得到了所需的输出: -

#include 
#include 
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
*/

如你所见,我没有包括任何namespacestd::literals::仍然我的程序正确运行.我在Orwell DevC++,C++ Shell,Coliru中尝试了这个,并且到处都有相同的输出.有什么问题?



1> Columbo..:

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.


@AnkitAcharya所以你可以编写`using namespace std :: literals;`如果你不想输出整个命名空间`std`.
推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有