摘要: void push_back (char c);//在string的结尾放置一个字符 #include <iostream>#include <string> using namespace std; int main(){ string str("hello world"); str.push_b 阅读全文
posted @ 2020-01-10 20:19 MoonXu 阅读(1054) 评论(0) 推荐(0) 编辑
摘要: void pop_back();//弹出最后一个字符 #include <string>#include <iostream> using namespace std;int main(){ string str("hello world!"); str.pop_back(); cout << st 阅读全文
posted @ 2020-01-10 20:15 MoonXu 阅读(489) 评论(0) 推荐(0) 编辑