位置: 编程技术 - 正文

Perl中的符号 ->;、=>; 和 :: 分别表示什么意思?(perl中的$1)

编辑:rootadmin

推荐整理分享Perl中的符号 ->;、=>; 和 :: 分别表示什么意思?(perl中的$1),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:perl中qw,perl常用函数,perl 制表符,perl-v,perl中qw,perl中qw,perl处理特殊符号,perl处理特殊符号,内容如对您有帮助,希望把文章链接给更多的朋友!

What do the ->, => and :: symbols mean&#;

  The -> is the "infix dereference operator". In other words it is the means by which one calls a sub with a pass by reference (among other things you can do with ->). As stated above most things in calls to perl/Tk routines are passed by reference. The -> is used in perl just as in C or C++. (Most of the widget primitives are elements of the Tk:: "perl class".) A simple example of dereferencing would be: $x = { def => bar }; # $x is a reference to an anon. hash print $x->{def},"/n"; # prints ``bar''

  Note that in the case of calling perl/Tk subs there may be more than one way to call by reference. Compare my($top) = MainWindow->new;

  with my($top) = new MainWindow;

  But in general you will be making extensive use of calls like: $top -> Widge-type;

  There is a clear and succint discussion of references, dereferences, and even closures in man perlref(1) or see the perl 5 info page at:   The use of the => operator is quite common in perl/Tk scripts. Quoting from man perlop(1):

  The => digraph is simply a synonym for the comma operator. It's useful for documenting arguments that come in pairs.

  You could say that => is used for aesthetic or organizational reasons. Note in the following how hard it is to keep track of whether or not every -option has an argument: $query -> Button(-in,/$reply,-side,'left',-padx,2m,-pady, 2m,-ipadx,2m,-ipady,1m)->pack(-side,'bottom');

  As opposed to: $query ->Button( -in => /$reply, -side => 'left', -padx => 2m, -pady => 2m, -ipadx => 2m, -ipady => 1m )->pack(-side => 'bottom');

  By the way if you wanted the numeric "greater than or equal" you would use >= not =>.

  While the :: symbol can be thought of as similar to the period in a C struct, it is much more akin to the :: class scope operator in C++: a.b.c; /* something in C */ a::b::c(); // function in C++ $a::b::c; # a scalar in Perl 5 @a::b::c; # a list in Perl 5 %a::b::c; # an associative array or "hash" in Perl 5 &a::b::c; # a function in Perl 5

  It is also analogous to the single forward quotation mark in perl 4: $main'foo; # a $foo scalar in perl 4 $main::foo; # a $foo scalar in Perl 5

  For backward compatibility perl 5 allows you to refer to $main'foo but $main::foo is recommended.

  译文:

  符号->,=>和::分别表示什么意思?

  ‘- >'符号是“插入式解引用操作符”(infix dereference operator)。换句话说,它是调用由引用传递参数的子程序的方法(当然,还有其它的作用)。正如我们上面所提到的,在调用Perl/Tk的函数的时候,大部分参数都是通过引用传递的。Perl中的‘->'功能就和它们在C或C++中一样。(大部分原始的组件都是Tk中的Perl类的元素。)下面是一个简单的解引用的例子:

  $x = { def => bar }; # $x是指向一个匿名hash的引用

  print $x->{def},"/n"; # 输出``bar''

  注意,在调用Perl/Tk的子程序时有多种不同的方法进行引用。我们可以比较一下:

  my($top) = MainWindow->new;

  和

  my($top) = new MainWindow;

  两种方法的不同。

  但是,一般来说我们通常都使用这样的方法调用:

Perl中的符号 ->;、=>; 和 :: 分别表示什么意思?(perl中的$1)

  $top -> Widge-type;

  在perlref的手册页中有详尽的关于引用、解引用、和闭包的讨论,或者也可以在下面的网页上查看Perl5的信息页:

    在Perl/Tk的脚本中‘=>'操作符时很常见的。perlop手册页中说:关系操作符=>只是逗号操作符的替代物,它在显示成对的参数时非常有用。

  你可以认为=>只是为了程序的美观和易维护而被使用的。请看,在下面的例子中,要想监测是否每个选项都有对应的值,是多么的困难:

  $query -> Button(-in,/$reply,-side,'left',-padx,2m,-pady,

  2m,-ipadx,2m,-ipady,1m)->pack(-side,'bottom');

  而下面的这个则相反:

  $query ->Button( -in => /$reply,

  -side => 'left',

  -padx => 2m,

  -pady => 2m,

  -ipadx => 2m,

  -ipady => 1m

  )->pack(-side => 'bottom');

  顺便说一下,如果你需要用数字“大于等于”的符号,你应该用“>=”而不是“=>”。

  “::”符号可以认为是与C语言中的“.”相似的,而它更像C++中的::类范围操作符。

  a.b.c; /* C语言中的 */

  a::b::c(); // C++ 中的函数

  $a::b::c; # Perl 5中的标量

  @a::b::c; # Perl 5中的列表

  %a::b::c; # Perl 5中的关联数组(或叫hash)

  &a::b::c; # Perl 5中的函数

  另外,Perl4中的单撇号也具有相同的功能:

  $main'foo; # Perl 4中的标量$foo

  $main::foo; # Perl 5中的标量$foo

  出于向后兼容的考虑,Perl5也运行使用$main'foo,但是仍推荐使用$main::foo。

perl uc,lc,ucfirst,lcfirst大小写转换函数 大小写字母转换:函数uc(uppercase)将所有的小写字母转成大写;函数lc(lowercase)将所有的大写字母转成小写;Perl提供了四个内置的函数类,从而能够轻松

在Django框架中自定义模板过滤器的方法 自定义过滤器就是有一个或两个参数的Python函数:(输入)变量的值参数的值,可以是默认值或者完全留空例如,在过滤器{{var|foo:"bar"}}中,过滤器foo会被传

Perl图形化包管理工具PPM学习使用笔记 PPM(Programmer'sPackageManager)是ActivePerl自带的一个图形化管理工具,有了这个工具,要升级,更新,移除Perl的Package都非常方便。只需要输入ppm或者ppmgui就可

标签: perl中的$1

本文链接地址:https://www.jiuchutong.com/biancheng/368767.html 转载请保留说明!

上一篇:Perl中的特殊符号介绍(perl 特殊字符转义)

下一篇:perl uc,lc,ucfirst,lcfirst大小写转换函数

  • 出口退税调整后退税率包括什么档次
  • 增值税进项税会计处理
  • 小微企业税收优惠政策2023年房产税
  • 金税四期正式启动
  • 税务系统重置密码
  • 投标报名费开什么类别发票
  • 已启动申报比对异常申报,可以作废嘛清卡吗
  • 季度三十万,是不含税额吗
  • 税率降低怎么算降税额
  • 注销实收资本账务处理
  • 怎样进行房产置换的账务处理
  • 出让固定资产怎样计算增值税
  • 未发货先开票怎么结转成本
  • 个体户能开增值税专用发票税率是多少
  • 财政拨款的事业单位有哪些
  • 出口退税申报系统汇率修改
  • 银行取现怎么取
  • 股东放弃本企业股权
  • 差错更正要调去年的吗
  • 金融企业准备金计提管理办法最新
  • 企业所得税零申报资产总额怎么填
  • 核销坏账的会计处理分录
  • 定期存款利息收入现金流
  • 应付股利会计分录例题
  • 法人垫付现金的原始凭证
  • 连接另外一个设备
  • 结转材料采购成本的会计分录是什么
  • Win11 Build 22000.65更新体验:汉化更完善,右下角返回桌面回归
  • PHP:Memcached::getServerByKey()的用法_Memcached类
  • 销售已使用固定资产收入与主营收入合计超过120万元
  • 长期待摊费用如何结转
  • 计提本月应交的所得税费用
  • 西班牙的藏红花好不好
  • VUE3.2 + vue-echarts + DataV 数据可视化大屏(项目)
  • 活动补助会计分录
  • 税前扣除 发票
  • 当月注销外管证个税账户也会注销吗
  • 适用会计准则或会计制度(填写代码)
  • 金蝶财务软件系统要求
  • 为什么企业一定要上政企通
  • python文档怎么查看
  • 织梦怎么添加相关
  • sqlserver2008数据库可疑
  • 个人所得税如何纳税
  • 留抵进项税太多怎么办
  • 小规模第一次申报流程
  • 增值税申报抵扣联数据没有
  • 软件购买商城
  • 公司没有车加油费怎么报
  • 计提印花税会计分录
  • 小企业如何进行内部创新
  • 解除合同补偿金需要缴纳个税吗
  • 其他综合收益什么时候转留存收益什么时候转损益
  • 行政事业单位如何开发票
  • 饭店现金账怎么记账
  • mysql exists与not exists实例详解
  • win8.1的开始菜单在哪
  • centos ssh permission denied
  • macbook取消弹出框阻止
  • 硬盘安装64位win8.1/win8或win7操作系统图文教程
  • WUSB54GS.exe - WUSB54GS是什么进程
  • Win7打印机驱动备份
  • windows8怎么调整亮度
  • windows7开机
  • winxp远程桌面
  • dmidecode 硬盘
  • Vsftpd+tcp_wrappers控制主机和用户访问
  • win7系统更新显卡驱动后黑屏无法启动
  • 每日十条简短新闻
  • 关于植物的现代诗
  • linux升级python2.7
  • perl fileparse
  • 文件上传的三个条件
  • 简单的安卓代码
  • unity smooth
  • 封装是借助什么达到的
  • javascript如何学
  • 广东税务局一般几点上班
  • 村级公益性支出是什么
  • 保险赔款是免征还是不征?
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设