“&s[0]”可以引用 std::string 中的连续字符吗?
人们注意到这样的代码:
std::string s; s.resize( strLength ); memcpy( &s[0], str, strLength );
如果 s 是 std::vector 就会安全,但问题是它是否是安全使用 std::string。
在 C 98/03 中,不保证 std::string 的分配是连续的。然而,C 11 强制执行这种连续性。实际上,大多数实现都使用连续存储。
C 11 标准保证 &s[0] 的使用可以工作,即使对于零长度字符串也是如此。这是因为operator[]定义为:
Returns *(begin() + pos) if pos < size(), otherwise a reference to an object of type T with value charT(); the referenced value shall not be modified
另外,data()定义为:
Returns: A pointer p such that p + i == &s[i] for each i in [0,size()].
因此,“&s[0]”指向连续的字符在 std::string 中并且是安全的用法。
以上是`&s[0]` 是指向 C std::string 中字符的安全且连续的指针吗?的详细内容。更多信息请关注PHP中文网其他相关文章!