2018年8月16日

python-random(big,small,equal)

摘要: 1 #coding=utf-8 2 import random 3 s = int(random.uniform(1,100)) 4 5 m = int(input('''input number:''')) 6 while m != s: 7 if m > s: 8 print('big') 9 m = int(input('''in... 阅读全文

posted @ 2018-08-16 17:09 fortwater 阅读(210) 评论(0) 推荐(0) 编辑

2018年8月15日

cpp文件处理

摘要: 1 #include 2 #include 3 using namespace std; 4 5 void file_wr(){ 6 char data[100]; 7 //打开文件 8 ofstream outfile; 9 outfile.open("demo.dat"); 10 cout>data; 20... 阅读全文

posted @ 2018-08-15 16:41 fortwater 阅读(509) 评论(0) 推荐(0) 编辑

cpp-数据抽象

摘要: 纯虚函数 阅读全文

posted @ 2018-08-15 11:46 fortwater 阅读(140) 评论(0) 推荐(0) 编辑

QT基础

摘要: 官方说明:the QList class is a template class that provides lists QList<T> is one of Qt's generic container classes.It stores a list of values and provides 阅读全文

posted @ 2018-08-15 11:44 fortwater 阅读(137) 评论(0) 推荐(0) 编辑

2018年8月14日

QT 基础

摘要: 官方说明:sets the stretch factor of column column to stretch.the first column is the number 0. 个人注解:stretch factor 拉伸因子 个人注解:选项卡小窗口 官方说明:shows the dialog 阅读全文

posted @ 2018-08-14 14:41 fortwater 阅读(121) 评论(0) 推荐(0) 编辑

2018年8月13日

cpp学习(day-three)

摘要: #include using namespace std; int main() { enum rank { first, //0 second, //1 third //2 }; int nRank = 2; switch (nRank) { case first: ... 阅读全文

posted @ 2018-08-13 14:37 fortwater 阅读(92) 评论(0) 推荐(0) 编辑

2018年8月12日

java 环境配置

摘要: JAVA_HOME CLASSPTH path 阅读全文

posted @ 2018-08-12 18:50 fortwater 阅读(91) 评论(0) 推荐(0) 编辑

计算机网络--网线

摘要: 六类线 标识 CAT6带宽250M 架设千兆网络 阅读全文

posted @ 2018-08-12 17:26 fortwater 阅读(71) 评论(0) 推荐(0) 编辑

2018年8月10日

cpp(day-two)

摘要: 恢复内容开始 " :: "作用域限定符,用于声明函数是属于哪个类 内置成员函数 inline void display() 对象成员的引用: 通过对象名和成员运算符访问对象中的成员 通过指向对象的指针访问对象中的成员 通过对象的引用来访问对象中的成员 公用成员函数是用户使用类的公用接口,或者是类的对 阅读全文

posted @ 2018-08-10 23:08 fortwater 阅读(93) 评论(0) 推荐(0) 编辑

2018年8月9日

cpp学习

摘要: 以类对象为基本构成单位的程序称为基于对象的程序。 面向对象程序设计有4个主要特点:抽象、封装、继承、多态 cpp的类对象体现了抽象和封装的特性,在此基础上再利用继承和多态性。 任何一个对象都应当是具有两个要素:属性,行为 对象是由一组属性和行为构成的 封装:将有关的数据和操作代码封装在一个对象中,形 阅读全文

posted @ 2018-08-09 22:19 fortwater 阅读(152) 评论(0) 推荐(0) 编辑

导航