iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 14
1
Blockchain

Smart Contract 開發 - 使用 Solidity系列 第 14

開發智能合約 - 表達示與流程控制 (Day14)

  • 分享至 

  • xImage
  •  

輸入參數和輸出參數

輸入參數

pragma solidity ^0.4.16;

contract Simple {
    function taker(uint _a, uint _b) public pure {
      // ...
    }
}

輸出參數

可以返回多個數值,這點跟其他程式語言非常不同。

pragma solidity ^0.4.16;

contract Simple {
    function arithmetics(uint _a, uint _b)
        public
        pure
        returns (uint o_sum, uint o_product)
    {
        o_sum = _a + _b;
        o_product = _a * _b;
    }
}
pragma solidity ^0.4.16;

contract Simple {
    function arithmetics(uint _a, uint _b)
        public
        pure
        returns (uint, uint)
    {
        o_sum = _a + _b;
        o_product = _a * _b;
        return (o_sum, o_product);
    }
}

流程控制

除了 switchgoto 之外,其他在 Javascript 語言可以用的流程控制,在 Solidity 都可以使用。

if

uint x = 10

if(x == 10) {

} else {

}

for

for (uint x = 0; x < 10; x++) {

}

while

uint i = 0;

while (i < 10) {
  i++;
}

不允許的用法

這個在 Javascript 語言常使用的手法,在 Solidity 是不適用的。

if (1) { 
  // ... 
}

函式呼叫 (Function Calls)

// TODO 添加一些解釋

呼叫內部函式 (Internal Function Calls)

呼叫同一個合約裡的函式

contract Math {
  function f1(uint a) returns (uint) { return f(a); }
  function f2(uint a) returns (uint) { return a * a}
}

呼叫外部函式 (External Function Calls)

呼叫另一個合約的函式

pragma solidity ^0.4.0;

contract InfoFeed {
  function info() returns (uint ret) { return 42; }
}
contract Consumer {
  InfoFeed feed;
  function setFeed(address addr) { feed = InfoFeed(addr); }

  // 在呼叫外部函式時,可以指定發送的貨幣數量跟 gas
  function callFeed() { feed.info.value(10).gas(800)(); }
}

命名呼叫 (Named Calls)

如果傳遞參數時,指定參數的名稱,就可以不用管參數的順序位置。

pragma solidity ^0.4.0;

contract Example {
  function f(uint a, uint b, uint c) { 
    // ... 
  }
  function g() {
    f({c: 2, a: 3});
  }
}

錯誤處理 (Error handling)

require

使用針對外部傳入值驗證,可針對條件判斷,當發生 false 時,會傳回剩餘未使用的 gas,回復所有狀態,情境常用於前置條件檢查。

語法

require(condition,[message])

範例

contract Example {
  function superPower() { 
    require(msg.sender == owner);
    // ...
  }
}

revert

終止執行,消耗所有 gas,回復所有狀態。

revert();
revert("Something bad happened");

完整範例

contract Example {
  function superPower() { 
    if(msg.sender != owner) {
      revert();
    }
  }
}

assert

使用於內部狀態檢查,發生例外會傳回剩餘未使用的 gas,回復所有狀態,常用於驗證輸入值的邊界條件檢查。

throw

發生異常錯誤會消耗所有 gas,沒有例外資訊,會回復所有狀態。

從 0.4.13 開始 throw 已被棄用,未來將會被移除,可改用 revert

使用情境判斷

require() 應該是你去檢查條件的函式,assert() 只用在防止永遠不應該發生的情境。至於 require()revert() 使用的差別,只在於你需不需要條件是判斷。

參考資料


上一篇
開發智能合約 - Solidity 型別 (Day13)
下一篇
開發智能合約 - 函式與修飾標記 (Day15)
系列文
Smart Contract 開發 - 使用 Solidity31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

0
地瓜皮
iT邦新手 5 級 ‧ 2022-01-18 15:36:53

呼叫內部函式那邊應該是f1(a)不是f(a)

contract Math {
    function f1(uint a) returns (uint) {
        return f1(a);
    }

    function f2(uint b) returns (uint) {
        return b*b ;
    }
}

感謝作者系統性分享知識,十分受用

我要留言

立即登入留言