上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 61 下一页
摘要: transform(first,last,result,op);//first是容器的首迭代器,last为容器的末迭代器,result为存放结果的容器,op为要进行操作的 阅读全文
posted @ 2019-07-16 11:21 MoonXu 阅读(195) 评论(0) 推荐(0) 编辑
摘要: at()//遍历 length()//长度 begin() end()//迭代器 str.copy(buf, 7, 4) //拷贝str下标为4开始的7的字符 c_str()//c风格字符串 s1.append(s2);//拼接 s5.find("hello", 5);//从下标5开始查找首次出现h 阅读全文
posted @ 2019-07-16 11:20 MoonXu 阅读(251) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <string> using namespace std;int main(int argc, const char * argv[]) { //string str("abcdefg"); string str = "abcdefg"; // 阅读全文
posted @ 2019-07-16 10:30 MoonXu 阅读(4182) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(int argc, const char * argv[]) { //通过const char * 初始化 string s1 = "aaaa"; //构造函数初始化 string s2("bbbbb 阅读全文
posted @ 2019-07-16 10:26 MoonXu 阅读(4147) 评论(0) 推荐(0) 编辑
摘要: unsigned cnt = 10; string bad[cnt];//错误cnt不是常量表达式 constexpr unsigned cnt = 10; string bad[cnt];//正确 阅读全文
posted @ 2019-07-15 10:26 MoonXu 阅读(115) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <vector>#include <string>using namespace std;using std::_Adjust_manually_vector_aligned;int main(){ vector<string> str; st 阅读全文
posted @ 2019-07-15 10:08 MoonXu 阅读(299) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <vector>#include <string>using namespace std;using std::vector;int main(){ vector<string> arr; string str; vector<int> num 阅读全文
posted @ 2019-07-15 09:38 MoonXu 阅读(419) 评论(0) 推荐(0) 编辑
摘要: int evutil_make_listen_socket_reuseable(evutil_socket_t sock); 相当于执行以下操作 int one = 1; setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*) &one,(ev_sock 阅读全文
posted @ 2019-07-11 22:21 MoonXu 阅读(152) 评论(0) 推荐(0) 编辑
摘要: gcc demo.c -o demo -I/tools/libevent/include -L/tools/libevent/lib -levent -I:头文件目录 -L:静态库目录 -l:静态库名字 如果想简单点,就在/etc/profile添加 29 C_INCLUDE_PATH=/tools 阅读全文
posted @ 2019-07-11 16:54 MoonXu 阅读(11312) 评论(0) 推荐(0) 编辑
摘要: 未研究 阅读全文
posted @ 2019-07-11 16:42 MoonXu 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 61 下一页