是“本地我们的”吗? 在 mod_perl2 下的对象模块中使用的东西,还是仅在脚本中使用的东西?
为了针对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
您绝对需要
我的
。local our
建议适用于模块中的全局变量。You definitely need
my
.The
local our
advice pertains to variables that are global in your module.$self 也可以在方法中以 $_[0] 的形式获得(Perl 自动在前面加上@_。)
Also $self is obtained in methods as $_[0] (Perl automatically prepends @_ with it.)