【Returns】
我們可以在定義函數時的參數後加上 returns
來敘述回傳值的型態。
以下的例子我們要回傳一個布林值,所以就在 returns
後敘述 bool
:
Solidity 和其他強型別語言不同的是,他可以回傳多個值,也就是 Multiple Return Values 的使用:
Last updated
Was this helpful?
我們可以在定義函數時的參數後加上 returns
來敘述回傳值的型態。
以下的例子我們要回傳一個布林值,所以就在 returns
後敘述 bool
:
Solidity 和其他強型別語言不同的是,他可以回傳多個值,也就是 Multiple Return Values 的使用:
Last updated
Was this helpful?