免费注册 查看新帖 |

Chinaunix

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

紧急求助仙子,怎么判断函数指针的有效性 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-05-28 09:56 |只看该作者 |倒序浏览
原始需求如下:
需要写一个测试框架接口,其中需要在测试结束后完成后处理工作,公共接口模板部分在测试用例执行前和用户代码拼接成一个完整的PL,
公共接口模板部分需要判断用户自己写的代码中是否存在一个特定名称的函数,有则执行,没有则忽略

现在解决方法是,模板接口代码取后处理函数的指针,然后判断指针是否有效来决定是否调用,但是defined无法判断该指针是否有效,如何解决??

论坛徽章:
0
2 [报告]
发表于 2010-05-28 10:54 |只看该作者
突然间发现,暴力的直接调用就可以了,如果不存在就会当作一个字符串常量的引用
不过难道就没个幽雅点的方法么?

论坛徽章:
0
3 [报告]
发表于 2010-05-28 11:19 |只看该作者
如下的判断方法可以么?

  1. if (defined(&{$func_ref}) {
  2.     &{$func_ref}};
  3.     print $@ if $@;
  4. }
  5. else {
  6.     print function does not exist\n";
  7. }

复制代码

论坛徽章:
0
4 [报告]
发表于 2010-05-28 11:58 |只看该作者
本帖最后由 climby 于 2010-05-28 12:06 编辑

对我刚才的回复稍加了修改,希望能满足你的要求:

  1. #!/usr/bin/perl

  2. sub func1 {
  3.     print "func1 is running\n";
  4. }

  5. sub func_test {
  6.     my $func_ref = shift;

  7.     # ref will return 'CODE' if it's function reference
  8.     if ( ( ref($func_ref) eq "CODE" )
  9.         && defined( &{$func_ref} ) )
  10.     {
  11.         &{$func_ref};
  12.         print $@ if $@;
  13.     }
  14.     else {
  15.         print "Not real function was called! \n";
  16.     }
  17. }

  18. ## testing from here
  19. my $func_ref = \&func1;
  20. my $anoy_ref = sub { print "anonymous function is running\n" };
  21. my $var      = "abcd";
  22. my $var_ref  = \$var;

  23. func_test($func_ref);
  24. func_test($anoy_ref);
  25. func_test($var);
  26. func_test($var_ref)


复制代码
测试结果输出:

  1. func1 is running
  2. anonymous function is running
  3. Not real function was called!
  4. Not real function was called!
复制代码

论坛徽章:
0
5 [报告]
发表于 2010-05-28 13:22 |只看该作者
本帖最后由 qnxchina 于 2010-05-28 13:23 编辑

我是用的比较暴力的方法,只要调用的函数在调用代码之前定义,并且去掉use strict "subs";

my $cleanup_func_ref;
$cleanup_func_ref=\cleanup_func;
$$cleanup_func_ref;

不过这样就需要使用者在写函数时要小心点了

论坛徽章:
0
6 [报告]
发表于 2010-05-28 13:35 |只看该作者
算了,还是用你的方法吧,毕竟破坏strict不是好方法

论坛徽章:
0
7 [报告]
发表于 2010-05-28 18:51 |只看该作者
Package::Name->can('function')

or

*Package::Name::function{CODE}

# or no strict; *{ "Package::Name::$function" }{CODE}

or just live with the exception. If you call the function in an eval and $@ is set, then you can't call the function.

Finally, it sounds like you may want Test::Class instead of writing this yourself.

论坛徽章:
0
8 [报告]
发表于 2010-05-28 22:40 |只看该作者
Package::Name->can('function')

or

*Package::Name::function{CODE}

# or no strict; *{ &quotackag ...
兰花仙子 发表于 2010-05-28 18:51



    Package::Name->can('function')

can 这个method 是perl 提供的吗?

论坛徽章:
0
9 [报告]
发表于 2010-05-29 11:34 |只看该作者
回复 8# nuclearxin


    那是由于Perl 在所有类的 @ISA 末尾添加了一个 UNIVERSAL 的Class, 该类提供 can()

论坛徽章:
0
10 [报告]
发表于 2010-05-31 12:28 |只看该作者
回复 9# dugu072_cu


    3q
看到了


  1. When you invoke a method methname on an invocant of type classname, Perl tries six different ways to find a subroutine to use:

  2. First, Perl looks in the invocant's own package for a subroutine named classname::methname. If that fails, inheritance kicks in, and we go to step 2.

  3. Next, Perl checks for methods inherited from base classes by looking in all parent packages listed in @classname::ISA for a parent::methname subroutine. The search is left-to-right, recursive, and depth-first. The recursion assures that grandparent classes, great-grandparent classes, great-great-grandparent classes, and so on, are all searched.

  4. If that fails, Perl looks for a subroutine named UNIVERSAL::methname.

  5. At this point, Perl gives up on methname and starts looking for an AUTOLOAD. First, it looks for a subroutine named classname::AUTOLOAD.

  6. Failing that, Perl searches all parent packages listed in @classname::ISA, for any parent::AUTOLOAD subroutine. The search is again left-to-right, recursive, and depth-first.

  7. Finally, Perl looks for a subroutine named UNIVERSAL::AUTOLOAD.

  8. Perl stops after the first successful attempt and invokes that subroutine. If no subroutine is found, an exception is raised, one that you'll see frequently:

复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP