摘要: #include<ctime> #include<sstream> #include<iostream> using namespace std; int main() { time_t now = time(NULL); tm* t = localtime(&now); // 将信息输出到字符串流 阅读全文
posted @ 2021-11-20 20:26 睡觉不困 阅读(55) 评论(0) 推荐(0) 编辑
摘要: #include <string> #include <iostream> using namespace std; string m_replace(string strSrc, const string &oldStr, const string &newStr,int count=-1) { 阅读全文
posted @ 2021-11-20 20:25 睡觉不困 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: 内容: 在“虚拟聊天室”实例中增加一个新的具体聊天室类和一个新的具体会员类,要求如下: 1. 新的具体聊天室中发送的图片大小不得超过20M。 2. 新的具体聊天室中发送的文字长度不得超过100个字符。 3. 新的具体会员类可以发送图片信息和文本信息。 4. 新的具体会员类在发送文本信息时,可以在信息 阅读全文
posted @ 2021-11-20 20:23 睡觉不困 阅读(235) 评论(0) 推荐(0) 编辑