Perl中的prototype()函数返回一个字符串,其中包含该函数的原型或作为参数传递给它的引用,如果该函数没有原型,则返回undef。
用法: prototype(function_name)
参数:
function_name:要确定原型的函数
返回值:
通过的函数的原型;如果不存在原型,则为undef
示例1:
#!/usr/bin/perl -w
$prototype_func = prototype ( "GFG" );
print "Prototype of GFG function ",
"is $prototype_func\n";
sub GFG(**)
{
print "Just a statement\n";
}
输出:
Prototype of GFG function is **
示例2:
#!/usr/bin/perl -w
$prototype_func = prototype ( "GFG" );
print "Prototype of GFG function ",
"is $prototype_func\n";
sub GFG($$)
{
print "Just a statement\n";
}
输出:
Prototype of GFG function is $$
相关用法
- Perl hex用法及代码示例
- Perl each()用法及代码示例
- Perl exp用法及代码示例
- Perl abs()用法及代码示例
- Perl cos()用法及代码示例
- Perl sin()用法及代码示例
- Perl ord()用法及代码示例
- Perl uc()用法及代码示例
- Perl tell()用法及代码示例
- Perl log()用法及代码示例
- Perl oct()用法及代码示例
- Perl chr()用法及代码示例
- Perl int()用法及代码示例
- Perl grep()用法及代码示例
- Perl index()用法及代码示例
注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | prototype() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。