-> 是什么意思? Perl 中的运算符做什么?
可能的重复:
-> 是什么? Perl 中的箭头做什么?
我没有 Perl 经验,我需要阅读一些脚本。
我找不到“->”的解释操作员。
你能解释一下“->”是什么意思吗?操作员在这一行做什么?
$sftp->doSomething( $sPerson, $sCredentials )
Possible Duplicate:
What does the -> arrow do in Perl?
I do not have Perl experience and I need to read some scripts.
I could not find the explanation for '->' operator.
Can you explain what does '->' operator do in this line?
$sftp->doSomething( $sPerson, $sCredentials )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅 perlop 中的 箭头运算符:
See The Arrow Operator in perlop:
在这种情况下,
->
(箭头运算符) 表示对象方法调用 - 正在调用对象$sftp
的doSomething()
方法。In this case, the
->
(arrow operator) indicates an object method call - thedoSomething()
method of the object$sftp
is being called.对象
$sftp
通过传递$sPerson
和$sCredentials
参数调用doSomething
方法,an object
$sftp
is callingdoSomething
method by passing$sPerson
and$sCredentials
argument,