上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 28 下一页
摘要: #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) 编辑
摘要: 实验:用Java代码模拟实现课堂上的“银行账户”的实例,要求编写客户端测试代码模拟用户存款和取款,注意账户对象状态和行为的变化。 由于是c++,不像java那么灵活,所以类的调用方面出了些许多问题,包括调用,出现了很多错误,不过好在都解决了。 代码: #include<iostream> using 阅读全文
posted @ 2021-11-18 12:19 睡觉不困 阅读(107) 评论(0) 推荐(0) 编辑
摘要: (39条消息) C++中virtual的三种用法_jirryzhang的博客-CSDN博客_virtual void 阅读全文
posted @ 2021-11-18 00:51 睡觉不困 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 先看这两段代码: #include <iostream> #include <vector> #include <algorithm> using namespace std; class Subject { public: Subject(){} virtual ~Subject(){} virt 阅读全文
posted @ 2021-11-17 11:17 睡觉不困 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 实验三内容: 自己设计并编写一个 Windows 应用程序,要求用到 TextBox、GroupBox、 RadioButton、CheckBox、ComboBox、ListBox 控件。将程序功能、界面布局和运行结果 的截图与事件代码写在实验报告中。 代码: using System; using 阅读全文
posted @ 2021-11-15 12:38 睡觉不困 阅读(231) 评论(0) 推荐(0) 编辑
摘要: IndexActivity.java package com.example.rubikrobot; import androidx.appcompat.app.AppCompatActivity; import android.animation.Animator; import android. 阅读全文
posted @ 2021-11-11 22:40 睡觉不困 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 一.关于解魔方机器人的步骤(上位机需要做的事) 1.上位机连接蓝牙 2.下位机通过蓝牙,向上位机发送拍照信息 3.上位机执行拍照,每隔一定时间自动拍照 4.上位机进行颜色识别,将六个面的颜色汇总并进行算法计算,计算出一个可供下位机解析的公式 二.遇到的问题 1.颜色识别的坐标找不准。我们颜色识别采用 阅读全文
posted @ 2021-11-09 23:33 睡觉不困 阅读(873) 评论(1) 推荐(0) 编辑
摘要: 例如在mysql数据库中建表时表名不能使用特殊符号,‘-’,‘{}’等等,所以我们要筛选去掉 public static void main(String[] args) { String regEx = "[\n`~!@#$%^&*()+=|{}':;',\\[\\].<>/?~!@#¥%……&* 阅读全文
posted @ 2021-11-07 09:26 睡觉不困 阅读(2025) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 28 下一页