Logo

Programming-Idioms

History of Idiom 94 > diff from v2 to v3

Edit summary for version 3 by :

Version 2

2015-10-01, 11:39:54

Version 3

2015-10-28, 02:07:30

Idiom #94 Print type of variable

Print the name of the type of x. Explain if it is a static type or dynamic type.

This may not make sense in all languages.

Idiom #94 Print type of variable

Print the name of the type of x. Explain if it is a static type or dynamic type.

This may not make sense in all languages.

Code
print ref($x)||"SCALAR", "\n";

Example:
my $s = "foo";
my @a = (1,2);
my %h = {foo=>1, bar=>2};
my $o = bless {}, 'OBJECT';
print ref($_)||"SCALAR", "\n" for $s, \@a, \%h, $o;

Output:
SCALAR
ARRAY
HASH
OBJECT


for my $x ($s, \@a, \%h, $o) {