std :: map默认构造函数是否显式?

时间:2017-07-11 09:04:15

标签: c++ clang++ libc++

以下代码在g ++(各种版本)上编译得很好但在我的系统上使用libc ++在clang ++ - 3.4上失败:

#include <map>
#include <string>

std::map<std::string, std::string> f() {
    return {};
}

int main() {
    auto m = f();
}

clang标志着以下问题:

x.cpp:6:12: error: chosen constructor is explicit in copy-initialization
    return {};
           ^~
/usr/local/Cellar/llvm34/3.4.2/lib/llvm-3.4/bin/../include/c++/v1/map:838:14: note: constructor declared here
    explicit map(const key_compare& __comp = key_compare())
             ^

实际上,include文件将构造函数声明为explicit但它在我的C ++ 11草案标准中没有标记。这是clang ++ / libc ++中的错误吗?我无法找到相关的错误报告。

1 个答案:

答案 0 :(得分:9)

在C ++ 14之前没有空的构造函数。 std::map<Key, Value, Compare, Allocator>的默认构造标记为explicit,默认参数为2,直到C ++ 14:

explicit map( const Compare& comp = Compare(), 
              const Allocator& alloc = Allocator() );

在C ++ 14之后,我们有一个非explicit空的默认构造函数,它从之前调用explicit构造函数(现在没有默认的Compare参数):< / p>

map() : map( Compare() ) {}
explicit map( const Compare& comp, 
              const Allocator& alloc = Allocator() );

所以你的例子只有在C ++ 14之后才有效。

来源:http://en.cppreference.com/w/cpp/container/map/map