免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3509 | 回复: 3
打印 上一主题 下一主题

怎样获取函数本身的名称 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-11-21 16:57 |只看该作者 |倒序浏览
本帖最后由 fouter 于 2014-11-21 17:08 编辑

如:
sub namexxx {
    如何在此处获取本函数的名称"namexxx"?
}

就像php的__FUNCTION__一样功能
function test()
{
    echo __FUNCTION__; // test
}
test();

论坛徽章:
0
2 [报告]
发表于 2014-11-21 17:08 |只看该作者
回复 1# fouter


   
       caller EXPR
       caller
           Returns the context of the current subroutine call.  In scalar context, returns the caller's package name if there is a caller (that is, if we're in a subroutine or "eval" or "require") and
           the undefined value otherwise.  In list context, returns

               # 0         1          2
               ($package, $filename, $line) = caller;

           With EXPR, it returns some extra information that the debugger uses to print a stack trace.  The value of EXPR indicates how many call frames to go back before the current one.

               #  0         1          2      3            4
               ($package, $filename, $line, $subroutine, $hasargs,

               #  5          6          7            8       9         10
               $wantarray, $evaltext, $is_require, $hints, $bitmask, $hinthash)

论坛徽章:
0
3 [报告]
发表于 2014-11-21 17:33 |只看该作者
非常感谢回复 2# Perl_Er


   

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2014-11-23 19:18 |只看该作者
新版本 Perl 有个 __SUB__,和你说的 __FUNCTION__ 类似
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP