pragma solidity ^0.4.0; contract EMath{ string public _a="lin"; function f() public{ modify(_a); } //function modify(string storage name) private{ fun... ...
分类:
其他好文 时间:
2018-12-06 20:16:53
阅读次数:
371
pragma solidity ^0.4.0; contract base{ address public _owner=msg.sender; uint _a; string internal _b ; uint private _c; //uint external _d;ParserError... ...
分类:
其他好文 时间:
2018-12-06 01:32:56
阅读次数:
277
pragma solidity ^0.4.4; contract funder{ //0xca35b7d915458ef540ade6068dfe2f44e8fa733c //0x14723a09acff6d2a60dcdf7aa4aff308fddc160c :10 //0x583031d1113... ...
分类:
其他好文 时间:
2018-11-19 20:21:00
阅读次数:
156
郑老师区块链大讲堂,带你最权威最深入的学习区块链。
分类:
其他好文 时间:
2018-11-18 23:44:34
阅读次数:
225
pragma solidity ^0.4.0; contract byte1{ /* 固定大小字节数组(Fixed-size byte arrays) 固定大小字节数组可以通过bytes1,bytes2...bytes32声明,byte=byte1 bytes1 只能存储1个字节,也就是二进制的8位... ...
分类:
编程语言 时间:
2018-11-16 18:24:17
阅读次数:
249
pragma solidity ^0.4.0; contract modifierTest{ bytes32 public blockhash; address public coinbase; uint public difficulty; uint public gaslimit; uint p... ...
分类:
其他好文 时间:
2018-11-15 17:19:16
阅读次数:
230
pragma solidity ^0.4.0; contract Bool{ uint num1 = 100; uint num2 = 200; bool _c = true; // && == function yuf() constant returns(bool){ return num1 =... ...
分类:
其他好文 时间:
2018-11-13 18:07:46
阅读次数:
145
pragma solidity ^0.4.0; // priveta public internal contract Test{ uint public _age; function Test(uint age){ _age = age; } function f(){ modify(_age);... ...
分类:
其他好文 时间:
2018-11-13 16:12:03
阅读次数:
165
1. abigen 参考文档(Native DApps: Go bindings to Ethereum contracts) abigen --sol token.sol --pkg token --lang go --out token.goTrying to bind solidity wit ...
分类:
其他好文 时间:
2018-11-02 13:07:43
阅读次数:
317