Initializing vector<string> with double curly braces

天涯浪子 提交于 2019-12-05 16:13:28

Implicit conversion central. That's what's going on.

  1. vector<string> v = {"a", "b"}; You initialize the vector by providing an initializer list with two elements. The two std::strings are initialized from the string literals, and then copied into the vector.

  2. vector<string> v = {{"a", "b"}}; You initialize the vector by providing an initializer with one element. And that single std::string is initialized from an initializer that has two elements. Accessing the second element of the vector has undefined behavior.

Now, here's the fun part. Your second snippet has undefined behavior even before you access v[1]. Overload resolution (to construct the single std::string) picks a constructor. The best viable one, is this:

template< class InputIt >
basic_string( InputIt first, InputIt last, 
              const Allocator& alloc = Allocator() );

With InputIt being deduced as char const [2] (and function parameter adjustment, turning it to char const*). Since those aren't really iterators, all hell breaks loose.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!