- Perl 基础知识
- Perl - 主页
- Perl - 简介
- Perl - 环境
- Perl - 句法概述
- Perl - 数据类型
- Perl - 变量
- Perl - 标量
- Perl - 数组
- Perl - 哈希表
- Perl - IF...ELSE
- Perl - 循环
- Perl - 运算符
- Perl - 日期和时间
- Perl - 子例程
- Perl - 引用
- Perl - 格式
- Perl - 文件输入/输出
- Perl - 目录
- Perl - 错误处理
- Perl - 特殊变量
- Perl - 编码标准
- Perl - 正则表达式
- Perl - 发送电子邮件
- Perl 高级
- Perl - 套接字编程
- Perl - 面向对象
- Perl - 数据库访问
- Perl - CGI 编程
- Perl - 程序包和模块
- Perl - 进程管理
- Perl - 嵌入式文档
- Perl - 函数引用
- Perl 有用资源
- Perl - 问题与解答
- Perl - 快速指南
- Perl - 有用资源
- Perl - 讨论
Perl 子例程
说明
此函数定义了一个新的子例程。上述参数遵循以下规则: −
NAME 是子例程的名称。已命名的子例程可以在没有关联代码块的情况下使用原型规范进行预声明(或不进行)。
匿名子例程必须有一个定义。
PROTO 定义函数的原型,该原型将在函数被调用以验证所提供的参数时使用。
ATTRS 为解析器定义针对正在声明的子例程的附加信息。
语法
以下是此函数的简单语法 −
sub NAME PROTO ATTRS BLOCK# Named, prototype, attributes, definition sub NAME ATTRS BLOCK # Named, attributes, definition sub NAME PROTO BLOCK # Named, prototype, definition sub NAME BLOCK # Named, definition sub NAME PROTO ATTRS # Named, prototype, attributes sub NAME ATTRS # Named, attributes sub NAME PROTO # Named, prototype sub NAME # Named sub PROTO ATTRS BLOCK # Anonymous, prototype, attributes, definition sub ATTRS BLOCK # Anonymous, attributes, definition sub PROTO BLOCK # Anonymous, prototype, definition sub BLOCK # Anonymous, definition
返回值
此函数不返回值。
perl_function_references.htm
广告