加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Learning Perl: 4.1. Defining a Subroutine

发布时间:2020-12-15 20:56:46 所属栏目:大数据 来源:网络整理
导读:? 4.1. Defining a Subroutine To define your own subroutine,use the keyword sub ,the name of the subroutine (without the ampersand),and the indented block of code (in curly braces) [ ] that makes up the body of the subroutine,something like

Previous Page

Next Page

?

4.1. Defining a Subroutine

To define your own subroutine,use the keyword sub,the name of the subroutine (without the ampersand),and the indented block of code (in curly braces)[

] that makes up the body of the subroutine,something like this:

[

] Okay,purists,we admit that the curly braces are part of the block,properly speaking. And Perl doesn't require the indentation of the block,but your maintenance programmer will. So please be stylish.

    sub marine {
      $n += 1;  # Global variable $n

      print "Hello,sailor number $n!/n";
    }

Subroutine definitions can be anywhere in your program text,but programmers who come from a background of languages such as C or Pascal like to put them at the start of the file. Others may prefer to put them at the end of the file,so the main part of the program appears at the beginning. It's up to you. In any case,you don't normally need any kind of forward declaration.[*] Subroutine definitions are global; without some powerful trickiness,there are no private subroutines.[

] If you have two subroutine definitions with the same name,the second one overwrites the first one.[

]
That's generally considered bad form or the sign of a confused maintenance programmer.

[*] Unless your subroutine is being particularly tricky and declares a "prototype," which dictates how a compiler will parse and interpret its invocation arguments. This is rare; see the perlsub manpage for more information.

[

] If you wish to be powerfully tricky,read the Perl documentation about coderefs stored in private (lexical) variables.

[

] A warnable offense,however.

As you may have noticed in the previous example,you may use any global variables within the subroutine body. In fact,all of the variables you've seen so far are globals; that is,they are accessible from every part of your program. This horrifies linguistic purists,but the Perl development team formed an angry mob with torches and ran them out of town years ago. You'll see how to make private variables in the section "Private Variables in Subroutines" later in this chapter.

Previous Page

Next Page

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读