Solidity-폴백 기능
대체 기능은 계약에 사용할 수있는 특수 기능입니다. 그것은 다음과 같은 특징이 있습니다-
계약에 존재하지 않는 함수가 호출 될 때 호출됩니다.
외부로 표시해야합니다.
이름이 없습니다.
인수가 없습니다
어떤 것도 반환 할 수 없습니다.
계약 당 하나씩 정의 할 수 있습니다.
지불 가능으로 표시되지 않은 경우 계약이 데이터없이 일반 에테르를 수신하면 예외가 발생합니다.
다음 예는 계약 별 대체 기능의 개념을 보여줍니다.
예
pragma solidity ^0.5.0;
contract Test {
uint public x ;
function() external { x = 1; }
}
contract Sink {
function() external payable { }
}
contract Caller {
function callTest(Test test) public returns (bool) {
(bool success,) = address(test).call(abi.encodeWithSignature("nonExistingFunction()"));
require(success);
// test.x is now 1
address payable testPayable = address(uint160(address(test)));
// Sending ether to Test contract,
// the transfer will fail, i.e. this returns false here.
return (testPayable.send(2 ether));
}
function callSink(Sink sink) public returns (bool) {
address payable sinkPayable = address(sink);
return (sinkPayable.send(2 ether));
}
}