摘要:
(1) istream& getline (istream& is, string& str, char delim); istream& getline (istream&& is, string& str, char delim); (2) istream& getline (istream& 阅读全文
摘要:
当出现这个悬浮小窗口时,只要按一下Ctrl,它就消失了 阅读全文
摘要:
下载util-linux 安装bison 安装autopoint 安装autoconf 安装lib-tool-2 失败。换方案 下载e2fsprogs https://www.cnblogs.com/lanston/p/4097408.html 然后发现板卡中又mkfs,是mkfs.ext3这种命名 阅读全文
摘要:
void push_back (char c);//在string的结尾放置一个字符 #include <iostream>#include <string> using namespace std; int main(){ string str("hello world"); str.push_b 阅读全文
摘要:
void pop_back();//弹出最后一个字符 #include <string>#include <iostream> using namespace std;int main(){ string str("hello world!"); str.pop_back(); cout << st 阅读全文
摘要:
string (1) string& insert (size_t pos, const string& str); substring (2) string& insert (size_t pos, const string& str, size_t subpos, size_t sublen); 阅读全文
摘要:
allocator_type get_allocator() const noexcept; 返回和对象相关的分配器的一个拷贝 #include <iostream>#include <string>#include <vector>using namespace std;int main(){ v 阅读全文
摘要:
cat是catenate的缩写, 连接;把…连接成链状 阅读全文
摘要:
$sudo apt-get install glibc-doc安装以后,发现还是有很多函数不全,只有一小部分pthread的函数,使用man -k pthread或apropos pthread可以查找到当前manpages中关于pthread的手册。安装manpages-posix-dev就可以了 阅读全文
摘要:
char& front(); const char& front() const;功能:返回string对象的首个字符,可以改变它的值 #include <string>#include <iostream> using namespace std; int main(){ string s1("t 阅读全文