特殊特性(Esoteric Features)
在Solidity的类型系统里面有一些类型有一些在其它语言中没有的语法。其中之一就是函数类型。但依然,使用var
时,可以把函数类型作为本地变量。
contract FunctionSelector {
function select(bool useB, uint x) returns (uint z) {
var f = a;
if (useB) f = b;
return f(x);
}
function a(uint x) returns (uint z) {
return x * x;
}
function b(uint x) returns (uint z) {
return 2 * x;
}
}
可以对var赋值为不同的函数。
处于某些特定的环境下,可以看到评论框,欢迎留言交流^_^。