是“本地我们的”吗? 在 mod_perl2 下的对象模块中使用的东西,还是仅在脚本中使用的东西?

发布于 2024-07-13 07:14:48 字数 258 浏览 9 评论 0原文

为了针对 mp2 定制脚本,避免需要任何兼容性包装器等,据说您应该使用“local our”而不是“my”来声明变量。 那么在模块中呢?

sub new
{
    local our $type = shift;
    local our $self = {};
    bless $self, $type;
}

是对的吗? 或者应该是“我的”,以便模块的其余部分可以在“use strict”下获取 $self ?

To tailor your scripts toward mp2, avoiding the need for any compatibility wrappers and such, it's said that you're supposed to declare variables using "local our" rather than "my". What about in modules?

sub new
{
    local our $type = shift;
    local our $self = {};
    bless $self, $type;
}

Is that right? Or should it be 'my' so the rest of the module can get at $self under "use strict"?

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

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

发布评论

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

评论(3

云胡 2024-07-20 07:14:48

local our 是一个丑陋的结构,从长远来看会咬你一口。

有关更多详细信息,请参阅 Perlmonks 上的线程

local our is an ugly construct that will bite you in the long run.

See the thread on Perlmonks for more details.

幸福%小乖 2024-07-20 07:14:48

您绝对需要我的

local our 建议适用于模块中的全局变量。

You definitely need my.

The local our advice pertains to variables that are global in your module.

任谁 2024-07-20 07:14:48

$self 也可以在方法中以 $_[0] 的形式获得(Perl 自动在前面加上@_。)

Also $self is obtained in methods as $_[0] (Perl automatically prepends @_ with it.)

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