Thread exists() auf hashref? (4 answers)
Opened by Froschpopo at 2006-02-28 05:14

Ronnie
 2006-02-28 18:55
#63327 #63327
User since
2003-08-14
2022 Artikel
BenutzerIn
[default_avatar]
[quote=pq,28.02.2006, 13:49]naja, jedenfalls ist exists $hash{key} genauso gefahrlos wie exists $hashref->{key}[/quote]
Ja, bei einer Ebene tritt es nicht auf, aber bei zwei Ebenen unabhängig ob mit '->' oder ohne:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

use Data::Dumper;

my %one = ( color => "red" );
my $two = { color => "blue" };

print "Bogus\n" if exists $one{shape}{box};
print "Bogus\n" if exists $two->{shape}->{box};

print Dumper \%one, Dumper $two;

View full thread exists() auf hashref?