摘要: pragma solidity ^0.4.23; /** * Math operations with safety checks */ library SafeMath { function mul(uint a, uint b) internal returns (uint) { uint c = a * b; assert(a == 0 || c / a == b... 阅读全文
posted @ 2018-10-26 15:29 人艰不拆_zmc 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 在linux环境下配置项目运行环境时,部署的人员都会分配一下内存,以保证程序正常的运行。其实在开发的时候(window系统),就已经涉及到内存分配了,只是这些参数有默认值,因此一直没有去重视它。 以Myeclipse为例,在Preferences->Java->Installed JREs下面,就有 阅读全文
posted @ 2018-10-26 11:28 人艰不拆_zmc 阅读(6697) 评论(0) 推荐(0) 编辑