Thread Hash-Übergabe als Referenz ohne Bezug auf Original (26 answers)
Opened by marky at 2009-09-25 16:06

pq
 2009-09-25 16:14
#126220 #126220
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
am einfachsten ist CPAN:Clone oder die funktion dclone aus CPAN:Storable.
wenn es nur ein hash mit einem level ist, kannst du auch selber "klonen":
Code (perl): (dl )
my %new_hash = %$hashref;
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Hash-Übergabe als Referenz ohne Bezug auf Original