如何在 Perl 中将变量的值设置为 null?

发布于 2024-10-29 20:51:43 字数 289 浏览 0 评论 0原文

我在一些示例中发现,所谓的构造函数 new 方法包含对类(包)的属性值的初始化,如下所示:

my $self = {
    _firstName => shift,
    _lastName  => shift,
    _ssn       => shift,
};

我知道 shift 是一个函数,但是上面的赋值是否将属性设置为 null?

I found in some examples, the so-called constructor new method contains initialization for the values of properties of a class (package) like this:

my $self = {
    _firstName => shift,
    _lastName  => shift,
    _ssn       => shift,
};

I know that shift is a function, but does the assignment above set the properties to null?

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

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

发布评论

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

评论(2

栖竹 2024-11-05 20:51:43

如果 @_ 数组中不存在任何项,shift 将返回未定义的值 http://perldoc.perl.org/functions/shift.html

您可以使用 define http://perldoc.perl.org/functions/define.html

shift returns undefined value if no items are present in the @_ array http://perldoc.perl.org/functions/shift.html

You can test this using defined http://perldoc.perl.org/functions/defined.html

街角卖回忆 2024-11-05 20:51:43

另一种简单的方法:

my $variable = undef;

Another simple way:

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