作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读电子表格以寻找不同的结构。当我尝试使用 Moose 进行以下操作时,它似乎可以满足我的要求。我可以创建不同类型的对象,将其分配给找到的成员并转储 Cell 实例以供审查。
package Cell
{
use Moose;
use Moose::Util::TypeConstraints;
use namespace::autoclean;
has 'str_val' => ( is => 'ro', isa => 'Str', required => 1 );
has 'x_id' => ( is => 'ro', isa => 'Str', ); # later required => 1 );
has 'color' => ( is => 'ro', isa => 'Str', );
has 'border' => ( is => 'ro', isa => 'Str', );
has 'found' => ( is => 'rw', isa => 'Sch_Symbol|Chip_Symbol|Net', );
1;
}
如果我尝试在 Perl 6 中做同样的事情,它会编译失败。
class Cell {
has Str $.str_val is required;
has Str $.x_id is required;
has Str $.color;
has Str $.border;
has Sch_Symbol|Chip_Symbol|Net $.found is rw
}
Malformed has
at C:\Users\Johan\Documents/moose_sch_3.pl6:38
------> has Sch_Symbol'<'HERE'>'|Chip_Symbol|Net $.found is rw
我如何在 Perl 6 中执行此操作?
最佳答案
您可能希望他们担任共同角色并将其指定为类型
role Common {}
class Sch-Symbol does Common {…}
…
class Cell {
…
has Common $.found is rw;
}
或者你将不得不使用一个where
约束
class Cell {
…
has $.found is rw where Sch-Symbol|Chip-Symbol|Net;
}
您还可以创建一个子集来包装 where
约束。
subset Common of Any where Sch-Symbol|Chip-Symbol|Net;
class Cell {
…
has Common $.found is rw;
}
请注意,where
约束比使用普通角色要慢。
关于raku - 如何将类属性声明为类名的联合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59970066/
我是一名优秀的程序员,十分优秀!