在语法中§

请参阅主要文档 上下文中标识符

标识符是语法构建块,可用于为实体/对象(如常量、变量(例如 Scalar)和例程(例如 Sub 和方法))命名。在 变量名 中,任何符号(和花纹符号)都位于标识符之前,不构成标识符的一部分。

constant c = 299792458;     # identifier "c" names an Int 
my $a = 123;                # identifier "a" in the name "$a" of a Scalar 
sub hello { say "Hello!" }# identifier "hello" names a Sub

标识符有不同的形式:普通标识符、扩展标识符和复合标识符。