博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
perl常量+多维数组+变量的初始化
阅读量:6174 次
发布时间:2019-06-21

本文共 752 字,大约阅读时间需要 2 分钟。

代码:

 

use
 strict; 
use warnings;
my 
$test = 
"
asdf
";
print 
"
${test}_test2\n
";
#
constant
use constant {
    AAA => 
"
aaa
",
    BBB=> 
"
bbb
",
    MIN_TOTAL => 
12,
    SCORE_PASS => 
90,
    SCORE_RED => 
70,
};
print AAA;
print SCORE_PASS;
#
two dimesion arrays
my 
@steps = (
      [
"
aaa
"
"
aaavalue
"],
      [
"
bbb
",
"
bbbvalue
"],
      [
"
ccc
",
"
cccvalue
"]
);
print 
"
\n
";
foreach 
my 
$i (
0 .. $
#
steps){
  
print 
"
$steps[$i][0]:$steps[$i][1]\n
";
}

 

代码2:

my 
$a1;
print 
"
$a1\n
";
my 
$a2 = 
undef;
print 
"
$a2\n
";
if(!
defined(
$a1)){
print 
"
a1 is not defined\n
";}
if(!
$a2){
print 
"
a2 is not defined\n
";}
my 
$a3=
'';
if
(!
$a3
){
print 
"
a3 is empty string\n
"
;}  

在定义变量时一定要初始化,或者在使用时判断是否defined,很多的时候还需要判断是否为空字符串。 特别是在使用getopt::long或cgi->query获得参数后要检测是否定义,如果么有定义考虑给予默认值。

 

完! 

转载地址:http://oimba.baihongyu.com/

你可能感兴趣的文章
Elaticsearch REST API常用技巧
查看>>
MySQL相关命令与备份
查看>>
HTML,CSS编码规范
查看>>
Woobuntu woobuntu_build.sh hacking
查看>>
Android 系统内置App JNI
查看>>
I.MX6 eMMC 中启动U-boot存放的首地址
查看>>
零元学Expression Blend 4 - Chapter 14 用实例了解布局容器系列-「Pathlistbox」II
查看>>
J2EE核心之EJB
查看>>
设计一个移动应用的本地缓存机制
查看>>
[LeetCode] Remove K Digits 去掉K位数字
查看>>
EF架构~Code First构架~Data层的实现
查看>>
[LeetCode] Minimum Window Substring
查看>>
一脸懵逼学习HBase的搭建(注意HBase的版本)
查看>>
iOS - OC 语言新特性
查看>>
OCCI处理CHAR类型字符串变量的不同
查看>>
跟锦数学2017年02月
查看>>
机器学习之Validation(验证,模型选择)
查看>>
Python模块探秘 Smtplib发送带有各种附件的邮件
查看>>
【100亿次的挑战】之拜年红包和春晚彩蛋
查看>>
极品亲戚
查看>>