Schrift
[thread]5686[/thread]

sub blubb ($)??: was bewirkt das $??

Leser: 1


<< >> 4 Einträge, 1 Seite
steinwolf
 2003-09-03 20:14
#83659 #83659
User since
2003-08-04
367 Artikel
BenutzerIn
[default_avatar]
Hi,
der Betreff sagt eigtl. alles...
was bewirkt das $ wenn ich eine Funktion in dieser Form schreibe?

sub meinefunktion($)
{

}

mfg steinwolf
"Did you know? You can use your old motor oil to fertilize your lawn." - Blinkster - Professionelles EDV Forum
pq
 2003-09-03 20:30
#83660 #83660
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
Code: (dl )
1
2
3
4
5
6
$ perl -wle'
sub meinefunktion($) { }
meinefunktion()'
Not enough arguments for main::meinefunktion at -e line 5, at end of line
Execution of -e aborted due to compilation errors.
$


($) ist ein prototyp, der verlangt, dass die funktion (in diesem
fall) mit genau einem parameter aufgerufen wird. <!--pod1--><a href="//www.perldoc.com/perl5.8.0/pod/perlsub.html" target="_blank">perldoc <!--pod2-->perlsub<!--pod3--></a><!--pod4-->\n\n

<!--EDIT|pq|1062606654-->
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
format_c
 2003-09-03 21:09
#83661 #83661
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
Einen Skalar als Parameter um genau zu sein.
\$ ist eine Referenz auf ein Skalar, @-List usw...
Das ganze hebelt man jedoch aus wenn man die Sub mit dem & aufruft:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
format_c@linux:/media/sda1/Scripte> perl
sub test ($) {
        my $text = shift;
        $text ||= '';
        print $text,"\n";
}
# Test1
test('Hallo');
# Test2
&test();
# Test3
&test('Hallo','Duda');
# Test4
test('Hallo','Duda');

Too many arguments for main::test at - line 13, near "'Duda')"
Execution of - aborted due to compilation errors.
format_c@linux:/media/sda1/Scripte>


Gruß Alex
Strat
 2003-09-04 14:26
#83662 #83662
User since
2003-08-04
5246 Artikel
ModeratorIn
[Homepage] [default_avatar]
<< >> 4 Einträge, 1 Seite



View all threads created 2003-09-03 20:14.