Blockchains Meet Distributed Hash Tables:Decoupling Validation from State Storage(Extended Abstract)Universit`a degli Studi Roma Tre常规用户在为公共区块链设置节点时遇到 ...
分类:
其他好文 时间:
2019-04-06 23:16:02
阅读次数:
247
python简介: 一、什么是python pythonde 设计哲学是:“优雅”、“明确”、“简单” 二、python由来 1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为ABC语言的一种继承。之所以选中Python作为程序的名字,是因为他是BBC ...
分类:
编程语言 时间:
2019-03-19 01:36:16
阅读次数:
197
内聚度 Cohesion 耦合度 Coupling "Coupling" describes the relationships between modules, and "cohesion" describes the relationships within them. 耦合性(Coupling ...
分类:
其他好文 时间:
2019-03-10 09:49:48
阅读次数:
186
https://max.book118.com/html/2018/0521/167783983.shtm https://baike.1688.com/doc/view-d36134276.html ...
分类:
其他好文 时间:
2019-02-14 20:53:28
阅读次数:
400
1.checkArgument 2.checkState 3.checkNotNull 4.checkElementIndex 5.checkPositionIndex 该类就这五种重载方法。 1. checkArgument 用作检查参数 2. checkState 用作检查状态 3.checkN ...
分类:
其他好文 时间:
2019-01-29 11:54:10
阅读次数:
142
Static Cling Sticking Your Code To Things Unnecessarily Static Cling is a code smell used to describe the undesirable coupling introduced by accessing ...
分类:
其他好文 时间:
2018-12-28 12:32:57
阅读次数:
149
字符串 字符串的定义与创建¶ 定义:字符串是一个有序的字符集合,用来存储和表示文本信息。用双引和单引表示。是一种不可变类型。¶ 创建:¶ In [9]: s = 'Hello Python' print(s) Hello Python 常用操作:¶ In [1]: # 索引和切片 s = 'Pyth ...
分类:
编程语言 时间:
2018-12-06 23:59:10
阅读次数:
325
golang中坑的慢慢踩! 我们都知道golang中的切片是引用类型,但是在函数中使用append给切片追加元素是行不通的,需要使用切片的指针类型才能增加元素 数组的使用: 运行结果: 切片的使用: 运行结果: ...
分类:
编程语言 时间:
2018-12-04 13:17:26
阅读次数:
214
在PHP中可以使用array_merge函数和两个数组相加array+array的方式进行数组合并,但两者效果并不相同,下面为大家介绍两者具体的使用区别. 区别如下: 当下标为数值时,array_merge()不会覆盖掉原来的值,但array+array合并数组则会把最先出现的值作为最终结果返回,而 ...
分类:
Web程序 时间:
2018-12-01 13:16:21
阅读次数:
183