如何在Perl中列出给定对象或包上的可用方法?

前端之家收集整理的这篇文章主要介绍了如何在Perl中列出给定对象或包上的可用方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Perl中列出给定对象或包上的可用方法

解决方法

如果你有一个名为Foo的包,应该这样做:
no strict 'refs';
for(keys %Foo::) { # All the symbols in Foo's symbol table
  print "$_\n" if exists &{"Foo::$_"}; # check if symbol is method
}
use strict 'refs';

或者,要获取所有方法的列表:

no strict 'refs';
my @methods = grep { defined &{$_} } keys %Foo::;
use strict 'refs';
原文链接:https://www.f2er.com/Perl/173421.html

猜你在找的Perl相关文章