区块链学堂(26):Ether Units& Time Units

Ether

Ether Units A literal number can take a suffix of wei, finney, szabo or ether to convert between the subdenominations of Ether, where Ether currency numbers without a postfix are assumed to be Wei, e.g. 2 ether == 2000 finney evaluates to true. 引用自here

以下这些单位都是solidity中可以使用的关键词

  • ether
  • finney
  • szabo
  • wei
Ether的Demo合约
pragma solidity 0.4.10;
contract demo {
    uint public balance;
    function demo() {
        balance = 1 ether;
    }

    function addFinney() {
        balance += 1 finney;
    }

    function addSzabo() {
        balance += 1 szabo;
    }

    function addWei() {
        balance += 1 wei;
    }
}

Time

有以下几种Time类型
  • seconds
  • minutes
  • hours
  • days
  • weeks
  • years
  • now
Time的Demo合约
pragma solidity 0.4.10;
contract demo {
    uint public a;
    function demo() {
        // a = now;
        a = 10000000000;
    }

    function addSeconds(uint num) {
        a += num;
    }

    function addMinutes(uint num) {
        a += num * 1 minutes;
    }

    function addHours(uint num) {
        a += num * 1 hours;
    }

    function addDays(uint num) {
        a += num * 1 days;
    }

    function addWeeks(uint num) {
        a += num * 1 weeks;
    }

    function addYears(uint num) {
        a += num * 1 years;
    }
}

原文:http://www.ethchinese.com/?p=1113

QQ群:559649971 (区块链学堂粉丝群)
个人微信:steven_k_colin

获取最新区块链咨询,请关注《以太中文网》微信公众号:以太中文网

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值