Lesson 3 Chapter8 関数修飾子2
前回の関数識別子の使用箇所
-
クリプトゾンビ Lesson 3 Chapter3 onlyOwner 関数修飾子
Lesson 3 Chapter3 onlyOwner 関数修飾子 onlyOwner関数修飾子 定義 modifier onlyOwner() { require(msg.sender == own ...
引数を持つ関数修飾子
引数を取る関数修飾子につい手の例
mapping (uint => uint) public age;
modifier olderThan(uint _age, uint _userId) {
require (age[_userId] >= _age);
_;
}
// 車の運転は16歳以上だな(米国の場合だ。日本は18歳だな)。
// こういう場合に引数のある`olderThan`修飾子を使うのだ。こんな風に書けばいい:
function driveCar(uint _userId) public olderThan(16, _userId) {
// 関数のロジックだ
}
使用場所のdriveCar関数で関数修飾子として使用される場合に引数が渡される。
補足Mapping
keyType can be value types such as uint, address or bytes.
valueType can be any type including another mapping or an array.
-
クリプトゾンビ Lesson 2 Chapter2 AddressesとMappings
Lesson 2 Chapter2 EVENT AddressesとMappings Addresses イーサリアムブロックチェーンのアカウントには、42桁(0xに続く40文字の16進数)の英数字ア ...
prev
-
クリプトゾンビ Lesson 3 Chapter7 Public関数とセキュリティ
Lesson 3 Chapter7 Public関数とセキュリティ publicやexternalの関数を全て見渡して、誰かに悪用されることはないか、と考えてみるのはセキュリティ上非常に重要 アクセス ...
next
-
クリプトゾンビLesson 3 Chapter9 ゾンビ修飾子
Lesson 3 Chapter9 ゾンビ修飾子 2つのゾンビ修飾子を作成し、名前、DNAの更新条件とする。 ゾンビのレベルが 2以上なら、ユーザーは名前を変更できるようにする。 ゾンビのレベルが 2 ...