一、多态 Python变量并不需要声明类型,同一个变量可以在不同的时间引用不同的对象,当一个变量在调用同一个方法,可以呈现出多种行为,而具体呈现出哪种行为由该变量引用的对象来决定,这就是多态。 先看一下以下例子: 上面的例子中,当涉及Host类的pet()方法时,该方法传入的参数对象只需要具有beh ...
分类:
编程语言 时间:
2019-07-21 16:25:08
阅读次数:
109
Jim has a balance and N weights. (1≤N≤20) The balance can only tell whether things on different side are the same weight. Weights can be put on left s ...
分类:
其他好文 时间:
2019-07-19 22:31:57
阅读次数:
129
its time to do cmake right Enough preambles. Does this look familiar to you? find_package(Boost 1.55 COMPONENTS asio) list(APPEND INCLUDE_DIRS ${BOOST... ...
分类:
其他好文 时间:
2019-07-01 22:52:09
阅读次数:
135
总览 vt-is-UTF8 [-h|--help] [-V|--version] [-q|--quiet] 描述 vt-is-UTF8 checks whether the current VT is in UTF8 mode, by writing (and erasing afterwards) ...
分类:
其他好文 时间:
2019-06-28 14:40:58
阅读次数:
76
Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the ...
分类:
其他好文 时间:
2019-06-13 20:27:21
阅读次数:
120
各种自动机(待补) Give a string SS and NN string T_iTi? , determine whether T_iTi? is a subsequence of SS. If ti is subsequence of SS, print YES,else print NO ...
分类:
其他好文 时间:
2019-05-30 01:47:30
阅读次数:
340
题目描述 Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Exampl ...
分类:
其他好文 时间:
2019-05-24 19:02:58
阅读次数:
104
使用 vue-resource 发起 get post jsonp 请求 注意: 假设当前服务器后台监听的端口是 7000 1,get post 既可以请求数据,也可以发送数据 2,请求的是 服务器 所在的 url 路径(http://localhost:7000/add),当然,如果你的客服端也是 ...
分类:
其他好文 时间:
2019-05-20 23:04:14
阅读次数:
306
一、 Engilsh:queue队列 pointer指针 indicate指示 position位置 front前面 item项目 whether是否 A List 队列:先入先出的数据结构。:在FIFO(先入先出)数据结构中,新元素始终被添加在【队列的末尾insert-enqueue】。删除操作也 ...
分类:
其他好文 时间:
2019-05-20 19:46:06
阅读次数:
117
默认情况下,mysql的主从同步,会启用三个线程,两个IO线程和一个SQL线程。主从同步的主要文件就是binlog文件,从库从主库的binlog中读取数据,然后记录在从库自己的relaylog中,然后通过SQL线程从relaylog中读取数据,写入到从库中。这个操作,是不会写入到从库自己的binlo ...
分类:
数据库 时间:
2019-05-15 11:17:49
阅读次数:
215