当前位置: 首页 > 文档资料 > Perl 入门教程 >

exit

优质
小牛编辑
133浏览
2023-12-01

描述 (Description)

此函数评估EXPR,退出Perl解释器,并返回值作为退出值。在退出之前,始终运行脚本(和导入的包)中定义的所有END {}块。 如果省略EXPR,则解释器以值0退出。不应该用于退出子例程; 使用eval和die或使用return。

语法 (Syntax)

以下是此函数的简单语法 -

exit EXPR
exit

返回值 (Return Value)

此函数不返回任何值。

<!--

例子 (Example)

Following is the example code showing its basic usage −

When above code is executed, it produces the following result −

-->