3

我与 Moose 一起迈出了第一步,我有以下问题。似乎我可以分配模块中未指定的属性。如果我尝试访问此属性,则会出现错误消息。如何防止模块中未指定的属性的分配?在下面的示例中,我指定了年龄,尽管我没有在模块中指定。除非我试图说出来,否则这是默默接受的。我希望该错误消息已经出现在 ->new 语句之后。

编码:

 #!/usr/bin/perl
 use strict;
 use warnings;

 use 5.012;
 package People;
 use Moose;
 use namespace::autoclean;
 has 'name' => (is => 'rw');
 __PACKAGE__->meta->make_immutable;

 package main;
 my $friend = People->new( name => 'Peter', age => 20 ); # no error.
 say $friend->name;
 say $friend->age; # here comes the error message.

谢谢!

4

1 回答 1

6

试试这个:

use MooseX::StrictConstructor;

当您将年龄传递给构造函数时,会抛出这样的错误:

Found unknown attribute(s) passed to the constructor: age ...
于 2013-02-17T15:41:45.777 回答