Vue's slots enable you to define where content of a component should land when you define the content inside of a parent component. You can also name ...
分类:
其他好文 时间:
2018-07-22 18:41:58
阅读次数:
163
python Class:面向对象高级编程 MethodType、__slots__
分类:
编程语言 时间:
2018-07-19 16:21:17
阅读次数:
174
1、Python中的属性和方法的绑定 正常情况下,当我们定义了一个class,创建了一个class的实例后,我们可以给该实例绑定任何属性和方法。 (1)首先,定义一个class: class Student(object): pass (2)然后,给实例绑定属性: (3)或者,给实例绑定一个方法: ...
分类:
编程语言 时间:
2018-07-16 21:11:08
阅读次数:
149
想了很久,我决定还是先从signal和slot(信号槽)开始讲起。 signal和slot大家一定不陌生,先看一段示例(选自文档): 使用signal和slot的类必须包含Q_OBJECT宏,声明slot需要使用public/private/protected slots:,signal则需要sig ...
分类:
其他好文 时间:
2018-07-15 23:16:49
阅读次数:
291
classComputer:"""电脑"""#__slots__=(‘_name‘,‘mem‘,‘cpu‘)def__init__(self,name,mem,cpu):self._name=nameself.mem=memself.cpu=cpu@propertydefname(self):#只读,getter方法returnself._namedefplay(self,game=‘qq游戏‘)
分类:
编程语言 时间:
2018-07-13 11:13:30
阅读次数:
308
搭建Redis集群准备6台redis服务器,具体要求如下:ip地址端口etho日志文件名192.168.4.516051都可以接收连接请求redis51.log192.168.4.526052都可以接收连接请求redis52.log192.168.4.536053都可以接收连接请求redis53.log192.168.4.546054都可以接收连接请求redis54.log192.168.4.55
分类:
其他好文 时间:
2018-06-29 19:58:36
阅读次数:
246
This enum describes the types of connection that can be used between signals and slots. In particular, it determines whether a particular signal is de ...
分类:
其他好文 时间:
2018-06-27 13:57:34
阅读次数:
188
问题描述: Given an 2D board, count how many battleships are in it. The battleships are represented with 'X's, empty slots are represented with '.'s. You m ...
分类:
其他好文 时间:
2018-06-26 10:56:58
阅读次数:
107
You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots: '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'. The wheels can rota ...
分类:
其他好文 时间:
2018-06-25 10:56:54
阅读次数:
154