- 论坛徽章:
- 0
|
先看一下官方的文档
The goto-&NAME form is quite different from the other forms of goto. In fact, it isn't a goto in the normal sense at all, and doesn't have the stigma associated with other gotos. Instead, it exits the current subroutine (losing any changes set by local()) and immediately calls in its place the named subroutine using the current value of @_. This is used by AUTOLOAD subroutines that wish to load another subroutine and then pretend that the other subroutine had been called in the first place (except that any modifications to @_ in the current subroutine are propagated to the other subroutine.) After the goto, not even caller will be able to tell that this routine was called first.
goto &subname 是先退出当前的过程然后执行 过程 subname,这样可以避免在使用 return subname 的时候在subname内部使用受到影响的一些变量
如:
- sub test1 {
- print "This is test1 ";
- print "\$/ is:" . $/;
- }
- sub test2 {
- local $/ = '#';
- goto &test1;
- }
- sub test3 {
- local $/ = '#';
- return test1();
- }
- print "call test2\n";
- test2();
- print "\ncall test3\n";
- test3();
复制代码
在查看 Export.pm模块时发现这个比较特殊的用法,感觉很好很强大 
- sub export {
- goto &{as_heavy()};
- }
复制代码 |
|