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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。