如何防止在调用 new 时设置 Perl Moose 只读属性?

发布于 2024-08-13 01:01:24 字数 320 浏览 6 评论 0原文

我想简单地在 Moose 中声明一个只读属性,该属性无法在调用 new 时初始化。因此,在声明以下内容之后:

package SOD::KuuAnalyze::ProdId;

use Moose;

has 'users' => (isa => 'ArrayRef[Str]', is => "ro");

1;

我不希望以下内容起作用:

my $prodid = SOD::KuuAnalyze::ProdId->new(users => ["one", "two"]);

I would like to simply declare a read only attribute in Moose that cannot be initialized in a call to new. So after declaring the following:

package SOD::KuuAnalyze::ProdId;

use Moose;

has 'users' => (isa => 'ArrayRef[Str]', is => "ro");

1;

I do not want the following to work:

my $prodid = SOD::KuuAnalyze::ProdId->new(users => ["one", "two"]);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〆一缕阳光ご 2024-08-20 01:01:24

使用 init_arg 属性配置(请参阅 Moose::手册::属性):

package SOD::KuuAnalyze::ProdId;
use Moose;

has 'users' => (
    isa => 'ArrayRef[Str]', is => "ro",
    init_arg => undef,    # do not allow in constructor
);
1;

Use the init_arg attribute configuration (see "Constructor parameters" in Moose::Manual::Attributes):

package SOD::KuuAnalyze::ProdId;
use Moose;

has 'users' => (
    isa => 'ArrayRef[Str]', is => "ro",
    init_arg => undef,    # do not allow in constructor
);
1;
今天小雨转甜 2024-08-20 01:01:24

如何

package SOD::KuuAnalyze::ProdId;

use Moose;

has 'users' => ( 
    isa => 'ArrayRef[Str]', 
    is => 'ro', 
    init_arg => undef, 
    default => sub { [ 'one', 'two' ] }, 
);

init_arg 设置为 undef 似乎有必要禁止从构造函数设置属性。

How about

package SOD::KuuAnalyze::ProdId;

use Moose;

has 'users' => ( 
    isa => 'ArrayRef[Str]', 
    is => 'ro', 
    init_arg => undef, 
    default => sub { [ 'one', 'two' ] }, 
);

Setting the init_arg to undef seems to be necessary to disallow setting the attribute from the constructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文