码迷,mamicode.com
首页 >  
搜索关键字:slots    ( 335个结果
Python中的魔法方法(一)
1.python中的__slots__ 1.python中的__slots__ 介绍:控制python类中的属性的创建 # 这里创建一个类来进行测试 class SlotsTest(): def __init__(self,x,y): self.name = x self.age = y a = S ...
分类:编程语言   时间:2020-06-10 22:56:50    阅读次数:74
[LC] 752. Open the Lock
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 ...
分类:其他好文   时间:2020-06-07 13:04:24    阅读次数:50
vue-router源码实现(一)
一、vue-router vue-router是vue.js的官方路由管理器。可以方便构建单页应用。 二、vue-router使用 1.安装 vue add router 2.router.js * 使用vue-router插件 import VueRouter from'vue-router' V ...
分类:其他好文   时间:2020-06-02 12:58:28    阅读次数:63
微信小程序消息滚动组件
微信小程序消息滚动组件 样式效果如下: 1.组件代码 新建组件 rollnews rollnews.js 更新newsList就可以更新滚动跳内容,可以通过prop数据绑定或lifetime请求接口更新数据。 ~~~js Component({ options: { addGlobalClass: ...
分类:微信   时间:2020-05-07 20:10:17    阅读次数:139
redis-trib.rb reshard 出现错误redis-trib.rb:1573: warning: key "threshold" is duplicated and overwritten on line 1573 [ERR] Wrong number of arguments for specified sub command
[root@localhost src]# ruby redis-trib.rb reshard 127.0.0.1 7000 --from 7ad192ef15a2eb136b8ae677e75a88799877c04e --to a3149dc5196622de43e3be6501368267b ...
分类:其他好文   时间:2020-05-03 00:52:41    阅读次数:67
ThreadLocal
1. 是什么? threadlocal而是一个线程内部的存储类,可以在指定线程内存储数据,数据存储以后,只有指定线程可以得到存储数据,官方解释如下 /** * This class provides thread-local variables. These variables differ fro ...
分类:其他好文   时间:2020-04-30 23:28:47    阅读次数:92
Python面向对象高级编程(__slots__、多继承、定制类)-6
一、使用__slots__ 1. 创建 的实例后,可以给该实例绑定任何属性和方法,这还少动态语言的灵活性。 2. 针对于单个实例绑定的方法,对于其他实例不起效,给 绑定才能对所有实例起效。 3. 可以使用 变量来限制class实例能添加的属性。 4. 使用 需要注意的是定义的属性仅对当前类实例起作用 ...
分类:编程语言   时间:2020-04-18 22:42:54    阅读次数:77
Linux(CentOS7) 环境搭建 redis5.0.8 集群
如果centos7 最小化安装没有ifconfig这个命令: yum install net-tools 安装完成之后 安装rz sz 工具 :yum -y install lrzsz 将下载好的 redis 安装包和 ruby 安装包上传到linux 解压 tar zxvf redis-stabl ...
分类:系统相关   时间:2020-04-16 00:24:42    阅读次数:171
获取redis cluster主从关系
需求:使用cluster slots命令,获取redis cluster 主从对应关系。 说明:cluster slots命令对应的字段说明:http://redis.cn/commands/cluster-slots.html redis-cli -h IP -p PORT -a PASSWD - ...
分类:其他好文   时间:2020-04-14 12:31:09    阅读次数:65
cf题解--E. Optimal Slots
https://codeforces.com/group/5yyKg9gx7m/contest/275848/problem/E E. Optimal Slots The main hall of your residency is open for use by the local communi ...
分类:其他好文   时间:2020-04-12 22:44:47    阅读次数:82
335条   上一页 1 2 3 4 5 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!