真的没有来自 std::string_view 的 std::string 的显式构造函数吗?
Posted
技术标签:
【中文标题】真的没有来自 std::string_view 的 std::string 的显式构造函数吗?【英文标题】:Is there really no explicit constructor of std::string from an std::string_view? 【发布时间】:2020-10-12 14:55:41 【问题描述】:一些(很多?)程序员被介绍给std::string_view
和std::string
会问自己:“为什么我可以将后者转换为前者,而反过来却不行?”
这里回答了一部分问题:
Why is there no implicit conversion from std::string_view to std::string?
人们可以喜欢或不喜欢这些原因。但是 - explicit 构造函数呢?我在 cppreference.com 上的 std::string
constructors page 上没有看到一个?
关于隐式构造函数的问题的两个答案基本上都表明隐式构造函数会导致内存分配和内存复制,而程序员并不清楚这一点。好的,好吧,使用显式构造函数 - 程序员确实想要分配和复制。为什么不给他/她呢?
【问题讨论】:
这里是一个来自 std::string_view 的 std::string 的显式构造函数。 ***.com/a/59424817/3001761 确切地说,任何可转换为 string_view 的东西都有一个明确的 c'tor。 Per jonrsharpe,这能回答你的问题吗? How to correctly create std::string from a std::string_view? @DavisHerring:虽然答案几乎相同,但问题却大不相同。所以,我认为这些不应该是骗子 【参考方案1】:tl;dr:它确实存在。
正如@Barry 和@StoryTeller 所指出的,这个构造函数实际上是存在的——尽管是通过使用模板;您只是没有注意到您链接到的 cppreference 页面上的“细则”:
template < class T >
explicit constexpr basic_string(
const T& t,
const Allocator& alloc = Allocator()
);
这将从std::string_view
构造一个std::string
。为什么?因为它是什么:
将
t
隐式转换为字符串视图sv
,就像std::basic_string_view<CharT, Traits> sv = t;
,然后用sv
的内容初始化字符串,就像std::basic_string(sv.data(), sv.size(), alloc)
一样。
针对T = std::string_view
的具体情况:
template <>
explicit constexpr basic_string<std::string_view>(
const std::string_view& t,
const Allocator& alloc = Allocator()
);
【讨论】:
以上是关于真的没有来自 std::string_view 的 std::string 的显式构造函数吗?的主要内容,如果未能解决你的问题,请参考以下文章
我啥时候应该使用 std::string / std::string_view 作为参数/返回类型
除了 std::string_view 方法之外,std::string_view 比 char* 有啥优势吗?
如何将 boost::string_view 转换为 std::string_view?
比较 std::string_view 和子字符串 string_view
如何在 constexpr string_view 上使用 std::string_view::remove_prefix()