1 lass tuple(object): 2 """ 3 tuple() -> empty tuple 4 tuple(iterable) -> tuple initialized from iterable's items 5 6 If the argument is a tuple, the ...
分类:
编程语言 时间:
2017-07-14 22:17:32
阅读次数:
264
1 class dict(object): 2 """ 3 dict() -> new empty dictionary 4 dict(mapping) -> new dictionary initialized from a mapping object's 5 (key, value) pair ...
分类:
编程语言 时间:
2017-07-14 21:13:26
阅读次数:
257
列表的方法 1 class list(object): 2 """ 3 list() -> new empty list 4 list(iterable) -> new list initialized from iterable's items 5 """ 6 def append(self, p ...
分类:
编程语言 时间:
2017-07-14 21:10:56
阅读次数:
260
你是否遇到过下面的情况,控制台无限的输出下面的日志: Logging initialized using ‘class org.apache.ibatis.logging.log4j.Log4jImpl’ adapter. Logging initialized using ‘class org.a ...
分类:
编程语言 时间:
2017-07-11 17:51:53
阅读次数:
195
用户设置 用户设置 用户设置 $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" 初始化仓库 $ git init Initialized empty Git ...
分类:
其他好文 时间:
2017-07-09 16:15:42
阅读次数:
137
Final 最终的,无法改变的 1.final数据 1)It can be a compile-time constant that won’t ever change. 2)It can be a value initialized at run time that you don’t want ...
分类:
其他好文 时间:
2017-07-01 18:31:30
阅读次数:
112
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST. Calling next() will return the n ...
分类:
其他好文 时间:
2017-06-27 15:02:51
阅读次数:
141
遇到的问题: BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext activeMQ启动的时候突然报这个错误,网上有一些解决方案 ...
分类:
其他好文 时间:
2017-06-24 16:23:55
阅读次数:
167
Given an m * n matrix M initialized with all 0's and several update operations. Operations are represented by a 2D array, and each operation is repres ...
分类:
其他好文 时间:
2017-06-24 09:55:44
阅读次数:
142
1, git init 初始化 E:\MyProject>git init Initialized empty Git repository in E:/MyProject/.git/2,git add 添加文件到暂存区 E:\MyProject>git add README.md3,git com ...
分类:
其他好文 时间:
2017-06-22 01:19:21
阅读次数:
254