New: cn-programmerAll contenthive-129948hive-196917krsteemzzanhive-183959hive-166405hive-180932hive-150122hive-185836uncommonlabphotographylifehive-183397hive-144064bitcoinhive-188619hive-139150hive-101145hive-124908krsuccesshive-103599hive-180301hive-109690hive-184714TrendingNewHotLikerscifer (60)in bitshares • 7 years agoGraphene 源码阅读 - 交易篇 - 交易费用交易费用 操作类型不同, 所需费用也不同. 各项操作的费用记录在 global_property_object::chain_parameters::fee_schedule 中. 石墨烯代码将创世信息中的 inital_parameters::current_fees …wpcomments (25)in test • 7 years agoexample title333example bodydddhiquanta (3)in steemit • 7 years ago函数式编程思想最近一直在学习函数式编程,函数式编程和面向对象编程都是编程范式的一种。函数式编程解决了一些面向对象解决起来很困难问题,比如并发状态的共享处理,其实函数式不用考虑状态....为了理解什么是函数式编程,我特意买了基本书,也查了一些资料,在这里跟大家分享一下 books 《java8函数式编程》 《函数式编程思想》 《JavaScript函数式编程》…hiquanta (3)in steemit • 7 years agosteemit账户注册,亲测可用感谢 @lemooljiang 提供的教程,新号终于注册成功,不能发图实在是太不方便了,而且有些时候一图顶千言,能少写大量的文字,最终还是决定用新号来玩了。但这个号还是会继续分享些自己认为不错的技术文章(仅仅是分享原文的连接作为参考) 参考教程 @lemooljiang 传送门>-< 点我hiquanta (3)in steemit • 7 years agoRxJava参考文章RxJava中backpressure(背压)的概念其实类似与生产者消费模型,backpressure其实解决了生产者生成数据过快带来的问题,细心的人会发现,RxJava2.0中对好多常用的操作符都默认做了backpressure处理,网上的资料也很多,,本人也没这么多时间再次写一遍,所以分享下连接,供将来不时之需,可以省去大量百度,查文档的时间。…hiquanta (3)in steemit • 7 years ago设计模式之---装饰模式java的io流体系的设计就是用的装饰模式,知道这一点再看io流体系会又豁然开朗的感觉! 装饰模式 (Decorator Pattern) 定义 Attach additional responsibilities to an object dy-namically keeping the same interface. Decorators provide a…hiquanta (3)in steemit • 7 years ago设计模式之---适配器模式适配器模式是android开发中最常用的模式之一,我们在开发显示列表时经常会用到 定义 适配器模式 (Adapter Pattern) Convert the interface of a class into another interface clientsexpect. Adapter lets classes work together that couldn't…hiquanta (3)in steemit • 7 years ago设计模式之---组合模式组合模式 定义 Compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objectsand compositions of objects uniformly.…hiquanta (3)in steemit • 7 years ago初识 Arduino最近要和用android连接obd2读取汽车的vin等相关信息,公司采购了块obd模拟器提供开发使用,感觉硬件也挺好玩的,之前也学过一些硬件创客的知识,也买过像arduino,树莓派的开发板子折腾过。用这些开源硬件的好处就是不过多的关心硬件的设计(硬件设计其实要考虑的挺多,对于搞软件的来说也是比较难的),只需关注自己的创意,至于功能嘛,有好多现成的模块能用了。老早写的一遍文章了,自己又拿过来重新学hiquanta (3)in steemit • 7 years ago设计模式之---原型模式原型模式 (Prototype Pattern) 定义 Specify the kinds of objects to create using a prototypicalinstance, and create new objects by copying this prototype. 用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。 类图:…hiquanta (3)in steemit • 7 years agoandroid系统源码镜像的使用方法把整个android源码镜像同步下来了,但是问题来了怎么试用这个镜像呢? 准备: ubuntu16.04 200g的空间(我记得android5.1时代,整个源码库大概150g左右) 步骤如下: 1.建立android源码镜像 这一步就不介绍了,自行百度(建议使用国内清华的镜像服务器,天朝防火墙,你懂的!) 2.同步完成后,运行 git daemon --verbose…hiquanta (3)in steemit • 7 years ago设计模式之---命令模式命令模式 (Command Pattern) 定义 Encapsulate arequest as an object, thereby letting you parameterize clientswith different requests, queue or log requests, and support un-doable operations.…hiquanta (3)in steemit • 7 years ago设计模式之---建造者模式建造者模式 (Builder Pattern) 定义 Separate the construction of a complex object from its repre-sentation so that the same construction process can create differ-ent representations.…hiquanta (3)in steemit • 7 years ago设计模式之---观察者模式观察者模式 定义 Define a one-to-many dependency between objects so thatwhen one object changes state, all its dependents are notifiedand updated automatically.…hiquanta (3)in steemit • 7 years ago设计模式之---策略模式策略模式 (Strategy Pattern) 定义: Define a family of algorithms, encapsulate each one, andmake them interchangeable. 定义一组算法,将每个算法都封装起来,并且使它们之间可以互换。 类图:暂时忽略,百度都有。(等我能上传图了,我会补上)…hiquanta (3)in steemit • 7 years ago设计模式之---模版方法模式模版方法模式 定义 Define the skeleton of an algorithm in an operation, defer-ring some steps to subclasses. Template Method lets subclassesredefine certain steps of an algorithm without changing the…hiquanta (3)in steemit • 7 years agoKotlin初体验开发工具: IntelliJIDEA