摘要: 错误提示1:undefined reference to `StrVec::alloc[abi:cxx11]' 类的静态数据成员需要在类外定义。 解决方式在类外加上代码: allocator<string> StrVec::alloc; 错误提示2:error: passing 'const Str 阅读全文
posted @ 2022-03-25 14:38 菠萝超级酸 阅读(234) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> #include <string> #include <set> using namespace std; class Message; class Folder { friend class Message; privat 阅读全文
posted @ 2022-03-23 22:16 菠萝超级酸 阅读(39) 评论(0) 推荐(0) 编辑
摘要: //两个类实现文本查询 #include <iostream> #include <memory> #include <fstream> #include <vector> #include <string> #include <set> #include <map> #include <sstre 阅读全文
posted @ 2022-03-20 16:07 菠萝超级酸 阅读(119) 评论(0) 推荐(0) 编辑
摘要: istringstream报错,错误如下 :variable 'std::istringstream line_stream' has initializer but incomplete type istringstream line_stream(line); 解决方法:包含sstream头文件 阅读全文
posted @ 2022-03-13 15:05 菠萝超级酸 阅读(1192) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; class Base { public: Base():b(1){} virtual void fun(){}; int b; }; class Son:public Base { public: Son():d(2) 阅读全文
posted @ 2022-03-03 11:19 菠萝超级酸 阅读(79) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> #include <stack> using namespace std; //有序数组去重 int order(vector<int> a) {//0-slow为去重后有序数组 int size=a.size(); int 阅读全文
posted @ 2022-02-10 14:21 菠萝超级酸 阅读(29) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; struct Node//定义单链表 { int val; Node* next; Node(int _val):val(_val),next(nullptr){} } ; class JoCycle{//定义环 pr 阅读全文
posted @ 2022-02-08 17:12 菠萝超级酸 阅读(19) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> using namespace std; int main(int argc, char *argv[]) { /* //法1,使用find函数 string st="1001,88.67,1003,22.1,1002,76 阅读全文
posted @ 2022-02-03 22:07 菠萝超级酸 阅读(857) 评论(0) 推荐(0) 编辑
摘要: 尝试使用telnet登录SMTP服务器后输入命令。 首先进行如qq邮箱进行设置,获得授权码。 1.进入邮箱,点击设置,再点击账户 2.开启IMAP/SMTP服务,发送短信才能开启,然后获得授权码(图片上我已经开启了) 3.授权码的格式是16个小写字母,我的是mhdq kdmh ltzy cadc,注 阅读全文
posted @ 2022-01-30 12:58 菠萝超级酸 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <vector> 3 #include <queue> 4 using namespace std; 5 struct Treenode 6 { 7 int val; 8 Treenode* left; 9 Treenode* rig 阅读全文
posted @ 2022-01-25 23:33 菠萝超级酸 阅读(26) 评论(0) 推荐(0) 编辑