描述
此函數返回一個字符串,其中包含 EXPR 指定的函數或引用的原型,如果函數沒有原型,則返回 undef。
您還可以使用它來檢查 內置 函數的可用性。
用法
以下是此函數的簡單語法 -
prototype EXPR
返回值
如果沒有函數原型,則此函數返回 undef 否則返回包含 EXPR 指定的函數或引用的原型的字符串。
示例
以下是顯示其基本用法的示例代碼 -
#!/usr/bin/perl -w
$func_prototype = prototype ( "myprint" );
print "myprint prototype is $func_prototype\n";
sub myprint($$) {
print "This is test\n";
}
執行上述代碼時,會產生以下結果 -
myprint prototype is $$
相關用法
- Perl prototype()用法及代碼示例
- Perl printf用法及代碼示例
- Perl print用法及代碼示例
- Perl print() and say()用法及代碼示例
- Perl push()用法及代碼示例
- Perl pipe用法及代碼示例
- Perl pack用法及代碼示例
- Perl push用法及代碼示例
- Perl pos用法及代碼示例
- Perl pop用法及代碼示例
- Perl sin()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl kill用法及代碼示例
- Perl chop()用法及代碼示例
- Perl wantarray用法及代碼示例
- Perl gmtime用法及代碼示例
- Perl exists()用法及代碼示例
- Perl split用法及代碼示例
注:本文由純淨天空篩選整理自 Perl prototype Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。