继承
继承是面向对象语言的重要特征。继承是为了模拟现实中的现象,并且可以简化代码的书写。
例如猫与够都属于动物。他们都继承动物的某些特征。
目前
创新互联已为1000+的企业提供了网站建设、域名、网页空间、
网站托管、企业网站设计、
长葛网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
继承语法
当前合约继承父类合约的属性和方法。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| contract 合约名 is 父类合约名{
} ```
## 继承例子
下面的例子中。直接部署son合约后,son合约继承了father合约的状态变量money与函数dahan,所以在son合约中,仍然可以访问或修改父类的状态变量和方法。 同时,在son合约中,有属于自己特有的状态变量和方法。 ```js pragma solidity ^0.4.23;
contract father{ uint public money =10000; function dahan() public returns(string){ return "dahan"; } }
contract son is father{ uint public girlfriend; //修改父类属性 function change() public{ money = 99; } }
|
继承与可见性
public
状态变量默认是public的类型,可以被继承,可以在外部与内部被调用
1 2 3 4 5 6 7 8 9
| contract father{ uint money = 10000; }
contract son is father{ function getMoney() public view returns(uint){ return money; } }
|
函数默认为public属性,可以被继承,可以在外部与内部被调用
1 2 3 4 5 6 7 8 9 10 11
| contract father{ function dahan() pure returns(string){ return "dahan"; } }
contract son is father{ function test() public view returns(string){ return dahan(); } }
|
internal
当为状态变量添加了inernal属性,仍然可以被继承,internal属性只能够被合约中的方法调用,不能够在外部被直接调用。
1 2 3 4 5 6 7 8 9
| contract father{ uint internal money = 10000; }
contract son is father{ function getMoney() public view returns(uint){ return money; } }
|
当为函数添加了inernal属性,仍然可以被继承,internal属性只能够被合约中的方法调用,不能够在外部被直接调用。
1 2 3 4 5 6 7 8 9 10 11
| contract father{ function dahan() internal pure returns(string){ return "dahan"; } }
contract son is father{ function test() public view returns(string){ return dahan(); } }
|
external
状态变量没有external属性,但是函数有。
当为函数加上external属性后,意味着合约只能够在外部被调用,不能够在内部被调用。
如果想合约在内部被调用,需要使用到如下this.函数
的方式:
1 2 3 4 5 6 7 8 9 10 11 12 13
| contract father{
function dahan() external pure returns(string){ return "dahan"; } }
contract son is father{ function test() public view returns(string){ return this.dahan(); }
}
|
能够调用external的第二种方式。
1 2 3 4 5 6 7 8 9 10 11 12 13
| contract father{
function dahan() external pure returns(string){ return "dahan"; } } contract testExternal{ father f = new father();
function test() public view returns(string){ return f.dahan(); } }
|
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
网站题目:solidity智能合约[34]-合约继承与可见性-创新互联
本文URL:
http://chengdu.cdxwcx.cn/article/dddjhj.html