Perl   发布时间:2022-04-07  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了perl6 – 覆盖角色的属性大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以覆盖角色的属性以提供默认值?
role A {
     has $.a;
}
class B does A {
    has $.a = "default";
}
my $b = B.new;

这会导致编译错误:

===SORRY!=== Error while compiling:
Attribute '$!a' already exists in the class 'B',but a role also wishes to compose it

解决方法

由于R中的方法可能引用$!a,因此会引起含糊不清的属性.

使用子方法BUILD初始化inherited / mixedin属性.

role R { has $.a };
class C does R {
    submethod BUILD { $!a = "default" }
};
my $c = C.new;
dd $c;
# OUTPUT«C $c = C.new(a => "default")␤»

根据您的用例,您最好通过角色参数设置默认值.

role R[$d] { has $.a = $d };
class C does R["default"] { };
my $c = C.new;
dd $c;
# OUTPUT«C $c = C.new(a => "default")␤»

大佬总结

以上是大佬教程为你收集整理的perl6 – 覆盖角色的属性全部内容,希望文章能够帮你解决perl6 – 覆盖角色的属性所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。