关系运算符 ```python class Number: def __init__(self, num): self.num = num # 大于 > def __gt__(self, other): print('__gt__') return self.nu... ...
分类:
编程语言 时间:
2018-12-22 01:35:20
阅读次数:
206
算术运算符 - 示例: ```python class Number: def __init__(self, num): self.num = num # 对象出现在'+'的左边时会自动触发 def __add__(self, other): print('__add__') re... ...
分类:
编程语言 时间:
2018-12-22 01:09:04
阅读次数:
190
Given a non-empty list of words, return the k most frequent elements. Your answer should be sorted by frequency from highest to lowest. If two words h ...
分类:
其他好文 时间:
2018-12-21 19:35:35
阅读次数:
174
说明: 当打包docker镜像时,docker build -t <image_name>:<tag> 时,该命令会自动读取当前文件夹下的Dockerfile文件里的命令行,来进行镜像打包。 FROM 说明:指定基础镜像,且必须是第一条指令;如果不以任何镜像为基础,则写法为: FROM scratc ...
分类:
其他好文 时间:
2018-12-21 13:21:45
阅读次数:
165
https://stackoverflow.com/questions/4591059/download-file-from-ftp-with-progress-totalbytestoreceive-is-always-1 With FTP protocol, WebClient in gener ...
Xshell工具和xftp工具都可以修改文件(文件夹)权限。 Xshell: 命令 chmod abc file 其中a,b,c各为一个数字,分别表示User、Group、及Other的权限。 r读取:4,w写入:2,x执行:1 若要rwx属性则4+2+1=7; 若要rw-属性则4+2=6; 若要r ...
分类:
系统相关 时间:
2018-12-18 12:05:59
阅读次数:
236
场景: 用TestNG框架运行测试类,控制台视图输出出现中文乱码。 解决方案: 1、eclipse属性>workspace>other>utf-8 2、修改eclipse.ini 文件,文件末尾添加: -Dfile.encoding=UTF-8,保存之后最后重新启动eclipse,以确保eclips ...
分类:
其他好文 时间:
2018-12-18 11:00:49
阅读次数:
286
Given an Android 3x3 key lock screen and two integers m and n, where 1 ≤ m ≤ n ≤ 9, count the total number of unlock patterns of the Android lock scre ...
分类:
移动开发 时间:
2018-12-18 02:10:09
阅读次数:
214
crm 系统项目(二) admin 后台操作表格 1. app下创建 templates 运行的时候 先找全局的templates——》 按照app的注册顺序找templates中的文件 2. app下在创建一个urls.py include() 3. 创建超级用户 python manage.py ...
分类:
其他好文 时间:
2018-12-17 23:56:05
阅读次数:
175
目前的react native版本是 ,參考了一些文章之後,終於集成好了。React Native環境的搭建我就不説了,詳細的可以參考React Native中文網的 "搭建文檔" 。 創建新的Android工程 環境配置好之後(sdk下載可能比較慢),用Android Studio創建一個Empt ...
分类:
移动开发 时间:
2018-12-17 20:10:41
阅读次数:
294