-
What does _ (underscore)
함수 정의
modifier onlyOwner { if (msg.sender != owner) throw; _; }
함수 사용
function setTitle (string _title) onlyOwner { hometitle = _title; }
발생한 효과
//아래와 같은 효과 if (msg.sender != owner) throw; hometitle = _title;
https://docs.soliditylang.org/en/develop/contracts.html#function-modifiers
https://gavofyork.medium.com/condition-orientated-programming-969f6ba0161a
'Blockchain' 카테고리의 다른 글
Metamask Ganache 연결 (0) 2023.01.08 Metamask Network 삭제 (0) 2023.01.08 Solidity Donation Ex (0) 2023.01.08 Solidity Call, Fallback, Receive Ex (1) 2023.01.08 Geth Ethereum client (0) 2023.01.07 ERC721 관련 (0) 2023.01.07 Truffle 예제 'pet-shop' (0) 2023.01.03 Solidity send Ex1 (0) 2023.01.02