견고성 수정자
2650 단어 solidityblockchainweb3function
예를 들어 수정자를 사용하여 함수를 실행하기 전에 조건을 자동으로 확인할 수 있습니다. 다음 용도로 사용할 수 있습니다.
modifier
를 사용합니다. 호출자가 계약의 소유자인지 확인하는 수정자
modifier onlyOwner {
require(msg.sender == owner);
// Underscore is a special character only used inside
// a function modifier and it tells Solidity to
// execute the rest of the code.
_;
}
수정자는 입력을 받을 수 있습니다. 이 수정자는 전달된 주소가 0 주소가 아닌지 확인합니다.
modifier validAddress(address _addr) {
require(_addr != address(0), "Not valid address");
_;
}
function changeOwner(address _newOwner) public onlyOwner validAddress(_newOwner) {
owner = _newOwner;
}
수정자는 함수 이전 및/또는 이후에 호출할 수 있습니다. 이 수정자는 함수가 실행 중인 동안 호출되는 것을 방지합니다.
modifier noReentrancy() {
require(!locked, "No reentrancy");
locked = true;
_;
locked = false;
}
function decrement(uint i) public noReentrancy {
x -= i;
if (i > 1) {
decrement(i - 1);
}
}
Reference
이 문제에 관하여(견고성 수정자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tawseef/modifiers-in-solidity-do1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)