So mal ein vollständigeres Beispiel:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/perl
use strict;
use warnings;
package TestClass;
use Data::Dumper;
sub new {
my $class = shift;
$class = ref($class) || $class;
my $self = [];
bless($self, $class);
return $self;
}
sub get {
my $self = shift;
return @$self;
}
sub set {
my $self = shift;
@$self = @_;
}
sub explode {
my $self = shift;
Dumper [$self->get()]; # print kommt an anderer Stelle. Danke an Renee!
}
package main;
my $object = new TestClass;
$object->set(qw (Hello World outside));
print $object->explode();
exit;
EDIT1: Beispiel etwas aufge'hübscht'.\n\n
<!--EDIT|Ronnie|1110978325-->