gpt4 book ai didi

c++ - string& 和 char* 版本的 string::append()、string::replace() 和 string::compare()

转载 作者:搜寻专家 更新时间:2023-10-31 00:19:29 27 4
gpt4 key购买 nike

std::string 中的两个重载函数引起了我的注意:

string& append(const string& str, size_t pos, size_t n);
string& append(const char* s, size_t n);

我很好奇为什么 char* 版本的 string::append() 不提供额外的参数 size_t pos,如下所示:

string& append(const char* s, size_t pos, size_t n);

对于其他两个函数,情况也是一样的:

int compare(size_t pos1, size_t n1, const string& str, size_t pos2, size_t n2) const;
int compare(size_t pos1, size_t n1, const char* s, size_t n2) const;

string& replace(size_t pos1, size_t n1, const string& str, size_t pos2, size_t n2);
string& replace(size_t pos1, size_t n1, const char* s, size_t n2);

这些函数的 char* 版本缺少参数 size_t pos2,这不如对应的 string& 灵活。我的问题如下:

  1. std::string 为什么要这样设计它的接口(interface)?
  2. 为什么 char* 版本函数也没有 size_t pos
  3. 这背后的考虑是什么?

感谢阅读!

最佳答案

因为您可以将 pos 添加到 s 中:

str.append(ptr + pos, len);

这并不是说它不是一个很好的速记,但他们(通常)只想最少地添加必要的功能,而不是琐碎的包装类型。

关于c++ - string& 和 char* 版本的 string::append()、string::replace() 和 string::compare(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8148340/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com