• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

perl学习之:subs函数

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

      在Perl中,sub关键字主要是为了定义一个子例程,那么subs又是什么呢?

      首先subs是一个函数,用于预先声明子例程,函数的参数是预声明的函数名列表。那么这个函数存在的意义是什么?首先,通过该函数预声明的那些函数,可以在不用&或者括号的情况下使用;其次,可以覆盖内建的Perl函数,诸如substr等。 

      下面就给出俩个例子来说明下:

示例脚本1: 

use strict;
use subs qw(func1 func2);

func1;
func2;

sub func1{
    print "this is func1\n";
}

sub func2{
    print "this is func2\n";
}
 
Output:
this is func1
this is func2 

   上述脚本中,调用函数func1与func2都未使用&或者括号。如果去掉开头部分的subs函数,那么上述脚本会在编译时报错。   

 

示例脚本2


use strict;
use subs qw(substr);

my $str = "String to be tested!\n";

substr($str,7,2);

print "After called substr,the \$str is $str\n";

sub substr{
    print "I have override the built-in subroutine substr(str,index,length)\n";
}

Output:
I have override the built-in subroutine substr(str,index,length)
After called substr,the $str is String to be tested! 

    通过结合subs函数覆盖了Perl内建的subs函数。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
教你用Perl实现Base64编码发布时间:2022-07-22
下一篇:
用Perl发送邮件小例子发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap