面向对象编程基础 活在当下的程序员应该都听过“面向对象编程”一词,也经常有人问能不能用一句话解释下什么是“面向对象编程”,我们先来看看比较正式的说法。 把一组数据结构和处理它们的方法组成对象(object),把相同行为的对象归纳为类(class),通过类的封装(encapsulation)隐藏内部细 ...
分类:
编程语言 时间:
2019-08-06 20:09:58
阅读次数:
133
之前给大家分享了一个使用python发图片数据、Qt server接收图片的Demo。之前的Demo用于传输小字节的图片是可以的,但如果是传输大的图片,使用socket无法一次完成发送该怎么办呢?本次和大家分享一个对大的图片拆包、组包、处理粘包的例子。 程序平台:ubuntu 、 Qt 5.5.1 ...
分类:
其他好文 时间:
2019-08-06 20:09:40
阅读次数:
129
Tired of doing the same job? Get your hands on NSE7_EFW exam It is the nature of the human being that he/she will get tired of doing the same task ove ...
分类:
其他好文 时间:
2019-08-06 20:09:13
阅读次数:
119
给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4], 满足要求的三元组集合 ...
分类:
编程语言 时间:
2019-08-06 20:09:00
阅读次数:
136
Tired of doing the same job? Get your hands on 101 exam It is the nature of the human being that he/she will get tired of doing the same task over and ...
分类:
其他好文 时间:
2019-08-06 20:08:45
阅读次数:
111
Filebeat是本地文件的日志数据采集器。 作为服务器上的代理安装,Filebeat监视日志目录或特定日志文件,tail file,并将它们转发给Elasticsearch或Logstash进行索引、kafka 等。 工作原理: Filebeat由两个主要组件组成:prospector 和harv ...
分类:
其他好文 时间:
2019-08-06 20:08:29
阅读次数:
229
var obj ={ name:'suan', sex :'male', age:150, height:185, characeter:true } for(var key in obj){ // console.log(key +' '+typeof(key)) //key 返回string 类 ...
分类:
Web程序 时间:
2019-08-06 20:08:10
阅读次数:
165
函数的写法 例: 定义类 在Python中可以使用class关键字定义类,然后在类中通过之前学习过的函数来定义方法,这样就可以将对象的动态特征描述出来,代码如下所示。 例: 输入两个数字,打印这两个数的差,和,乘,除,整除,取余,平方 判断输入一个年龄,如果年龄大于18岁可观看动作片,如果小于18岁 ...
分类:
编程语言 时间:
2019-08-06 20:07:52
阅读次数:
136
Tired of doing the same job? Get your hands on NSE5 exam It is the nature of the human being that he/she will get tired of doing the same task over an ...
分类:
其他好文 时间:
2019-08-06 20:07:35
阅读次数:
101
1.什么是框架? 框架将浏览器划分为不同的部分,每一部分加载不同的网页,实现再同意浏览器窗口中加载多个页面的效果。 2.<frameset>划分框架标记 (1)语法格式: (2)属性 cols:使用“像素数”和%分割左右窗口,“*表示剩余部分” 如果使用“*”,“*”表示框架平均分成2个 如果使用“ ...
分类:
Web程序 时间:
2019-08-06 20:07:08
阅读次数:
154
v-model语法糖: model: 默认情况下,一个组件上的 v-model 会把 value 用作 prop 且把 input 用作 event, 但是一些输入类型比如单选框和复选框按钮可能想使用 value prop 来达到不同的目的。使用 model 选项可以回避这些情况产生的冲突。 (默认 ...
分类:
其他好文 时间:
2019-08-06 20:06:57
阅读次数:
160
这里例举三个常用方法: 1、String getMessage() 2、String toString() 3、void printStackTrace() 下面我们来看实际应用 、 package YC;public class yichang2 { public static void main ...
分类:
编程语言 时间:
2019-08-06 20:06:23
阅读次数:
120
-- 建立源表create table t_source ( item_id int, created_time datetime, modified_time datetime, item_name varchar(20), other varchar(20) ); -- 建立目标表create ...
分类:
其他好文 时间:
2019-08-06 20:06:01
阅读次数:
105
Tired of doing the same job? Get your hands on NSE5_FMG-6.0 exam It is the nature of the human being that he/she will get tired of doing the same task ...
分类:
其他好文 时间:
2019-08-06 20:05:48
阅读次数:
87
网上好多Ubuntu16.04升级Python的方法,但是大多教程都是使用源码安装的方式。这篇博文将会使用另一种方法将系统自带的Python3.5升级到Python3.6。 用过Ubuntu16.04的人都知道,这个版本Ubuntu的软件源安装列表中是没有Python3.6的安装包的,所以我们需要添 ...
分类:
编程语言 时间:
2019-08-06 20:05:36
阅读次数:
144
truncate t_target; insert into t_target select distinct t1.* from t_source t1 where item_id in (select min(item_id) from t_source t2 where t1.created_ ...
分类:
其他好文 时间:
2019-08-06 20:05:13
阅读次数:
131
http://acm.hdu.edu.cn/showproblem.php?pid=5285 题意:把互不认识的人分到两个组,第一组人数尽可能多。 题解:把互不认识的人连起来,当作二分图,二分图可能有多个,对于没有连线的点,扔到第一个图里。二色法对每个二分图染色,记录每个图比较多的颜色的数量累计到答 ...
分类:
其他好文 时间:
2019-08-06 20:04:55
阅读次数:
84