摘要: 我在最开始被唬住了,后来发现并不复杂,设置于很简单,下面看教程,本教程一步到位,没有多余的废话 1.环境准备 下载刷机包 kdz :https://pan.baidu.com/s/16PlI-GU-Rb1NMSYxxjFU9Q 提取码: y6bs 安装驱动 驱动:https://v35.52mfzy 阅读全文
posted @ 2019-09-16 21:26 diamondDemand 阅读(4146) 评论(0) 推荐(0) 编辑
摘要: 推荐大家一个靠谱的论文检测平台。重复的部分有详细出处以及具体修改意见,能直接在文章上做修改,全部改完一键下载就搞定了。怕麻烦的话,还能用它自带的降重功能。哦对了,他们现在正在做毕业季活动, 赠送很多免费字数,可以说是十分划算了!地址是:http://www.paperpass.com/ 阅读全文
posted @ 2019-05-21 16:57 diamondDemand 阅读(179) 评论(0) 推荐(0) 编辑
摘要: mainactivity newActivity 阅读全文
posted @ 2018-06-24 10:38 diamondDemand 阅读(180) 评论(0) 推荐(0) 编辑
摘要: activity_main.xml 的代码 item.xml 这是listview中的项 strings.xml一些字符串资源,后来嫌麻烦,直接硬编码了 information类,这个类用来管理学生信息 mainActivity.java 效果图如上,这个例子使用 阅读全文
posted @ 2018-06-23 21:22 diamondDemand 阅读(1263) 评论(0) 推荐(0) 编辑
摘要: c++标准库函数都在std这个命名空间中,想要使用必须加上using namespace std,下面给出几种使用方法 1. specify the identifier directily, for example std::ostream instead of ostream. the comp 阅读全文
posted @ 2018-03-01 21:45 diamondDemand 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 由于博爱网络开发的操作系统是基于openwrt的,所以我们参考这篇博文(https://www.cnblogs.com/hdk1993/p/4769079.html)进行设置,其中只有小小的一点需要注意 在第一部分加入网络的那一块,我们在输入需要被中继的网络的密钥并提交后,博爱网络的操作系统会让我们 阅读全文
posted @ 2018-01-30 18:22 diamondDemand 阅读(6335) 评论(0) 推荐(0) 编辑
摘要: 1. pure virtual function can be achieved, do not have to only declare, not to achieve.2. even if the pure virtual function has been achieved, with pur 阅读全文
posted @ 2017-10-21 17:17 diamondDemand 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #define n 6 //size of maze 5 using namespace std; 6 7 int grid[n+2][n+2]; //we set the border for the maze 8 struct position //this struct... 阅读全文
posted @ 2017-10-19 21:28 diamondDemand 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Scott Young (Scott Young) completed a surprising feat: he learned all the 33 lessons of the MIT computer science course within a year. Most importantl 阅读全文
posted @ 2017-10-18 16:30 diamondDemand 阅读(197) 评论(0) 推荐(0) 编辑
摘要: function name: fflush(FILE *stream)function: clear the read and write buffer, you need to immediately write the output buffer data into the specified 阅读全文
posted @ 2017-10-17 16:32 diamondDemand 阅读(120) 评论(0) 推荐(0) 编辑