码迷,mamicode.com
首页 > 其他好文 > 详细

Solidity payable 方法表现

时间:2018-03-20 19:40:54      阅读:1626      评论:0      收藏:0      [点我收藏+]

标签:on()   weight   blog   cti   turn   function   return   log   方法   

 

 

 1 pragma solidity ^0.4.4;
 2 
 3 contract Person {
 4 
 5     string public  name;
 6     uint age;
 7     uint private weight;
 8     string internal birthday;
 9     
10     function Person() {
11         name = "";
12         age = 0;
13         weight = 0;
14         birthday = "0000-00-00";
15     }
16  
17     function f0()  payable public returns(uint){
18         return address(this).balance; // 只要一调用f0,balance就改了,不需要等f0执行结束
19     }
20     
21     function f1() public returns(uint) {
22         return address(this).balance; // 调用完f0,再调f1查询合约账户余额,与f0查到的相同
23     }

 

Solidity payable 方法表现

标签:on()   weight   blog   cti   turn   function   return   log   方法   

原文地址:https://www.cnblogs.com/huahuayu/p/8611411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!