・interface
一見コントラクトに見えるが外部コントラクトのデータを読み込むために使用するものをinterfaceと呼ぶ
contract NumberInterface {
function getNum(address _myAddress) public view returns (uint);
}
ここでは外部コントラクトのgetNum関数を読み込んでいる。(uint)後に{}を使用せず;が使われてるのが特徴。
Go to list of users who liked
More than 1 year has passed since last update.
・interface
一見コントラクトに見えるが外部コントラクトのデータを読み込むために使用するものをinterfaceと呼ぶ
contract NumberInterface {
function getNum(address _myAddress) public view returns (uint);
}
ここでは外部コントラクトのgetNum関数を読み込んでいる。(uint)後に{}を使用せず;が使われてるのが特徴。
Register as a new user and use Qiita more conveniently
Go to list of users who liked