码迷,mamicode.com
首页 > 其他好文 > 详细

Perl变量及用法

时间:2015-04-24 10:45:31      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:perl   用法   变量类型   

Perl的变量类型及用法

Variable types and their uses
| Type       | Sigil | Example   | Is a Name For                          |
|------------+-------+-----------+----------------------------------------|
| Scalar     | $     | $cents    | An individual value (number or string) |
| Array      | @     | @large    | A list of values, keyed by number      |
| Hash       | %     | %interest | A group of values, keyed by string     |
| Subroutine | &     | &how      | A callable chunk of Perl code          |
| Typeglob   | *     | *struck   | Everything named struck                |

# for example
my $phrase = "Howdy, world!\n";  # Create a variable
print $phrase;                   # Print the variable


本文出自 “天道酬勤” 博客,请务必保留此出处http://lavenliu.blog.51cto.com/5060944/1637800

Perl变量及用法

标签:perl   用法   变量类型   

原文地址:http://lavenliu.blog.51cto.com/5060944/1637800

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!