goto 和 func; 之间有什么区别吗?和功能;在 Perl 中?
goto &func;
&func;
经过一番测试,他们两个看起来很相似,是这样吗?
goto &func;
&func;
They two seems identical to me after some test,is that the case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很大的区别。检查这里: perl-goto
There is a substantial difference. Check here: perl-goto
您运行了错误的测试。使用 caller 来查看发生了什么。
当你运行它时,你会看到类似以下内容:
You were running the wrong tests. Use caller to see what is going on.
When you run it, you'll see something like: