c++ std::string::append函数

Posted smallredness

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ std::string::append函数相关的知识,希望对你有一定的参考价值。

string& append (const string& str);
string& append (const string& str, size_t subpos, size_t sublen);   
string& append (const char* s);
string& append (const char* s, size_t n);
string& append (size_t n, char c);

/*
std::string stra("helloworld");
std::string str;
str.append(stra);
str.append(stra,0,5);
*/

/*
char pch[15]="helloworld";
std::string str;
str.append(pch);
str.append(pch,5);
*/

/*
std::string str;
str.append(5,'c');
*/

以上是关于c++ std::string::append函数的主要内容,如果未能解决你的问题,请参考以下文章

为啥 std::string append 在 rval ref 上没有重载?

C++ 调用 C++ 库函数但执行了错误的函数

将 C++ 函数用作由导出的 Rcpp 函数调用的另一个 C++ 函数的参数

怎么找C++函数需要的头文件?(C++头文件C++函数文档C++文档)

c++函数模板

PyObject_GetAttrString C++ 函数返回 NULL:无法从 C++ 调用 Python 函数