Schrift
[thread]6670[/thread]

Symbolische Konstanten



<< >> 5 Einträge, 1 Seite
zweistein
 2005-01-28 15:12
#51394 #51394
User since
2005-01-25
9 Artikel
BenutzerIn
[default_avatar]
Hallo,

Gibt es in Perl  Symbolische Konstanten wie in C( #define pi .... )?.

macht man das in Perl mit einem Hashe oder wie ......?


Grüsse
renee
 2005-01-28 15:17
#51395 #51395
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Meinst Du normale Konstanten (siehe perldoc constant)
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/
zweistein
 2005-01-28 15:26
#51396 #51396
User since
2005-01-25
9 Artikel
BenutzerIn
[default_avatar]
ja,normale konstanten.:)
Danke.\n\n

<!--EDIT|zweistein|1106919612-->
renee
 2005-01-28 15:30
#51397 #51397
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Auszug aus perldoc constant:
Code: (dl )
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
C:\Dokumente und Einstellungen\reneeb>perldoc constant
NAME
constant - Perl pragma to declare constants

SYNOPSIS
use constant PI => 4 * atan2(1, 1);
use constant DEBUG => 0;

print "Pi equals ", PI, "...\n" if DEBUG;

use constant {
SEC => 0,
MIN => 1,
HOUR => 2,
MDAY => 3,
MON => 4,
YEAR => 5,
WDAY => 6,
YDAY => 7,
ISDST => 8,
};

use constant WEEKDAYS => qw(
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
);
[...]
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/
esskar
 2005-01-28 22:12
#51398 #51398
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
obwohl es mit

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
use constant {
SEC => 0,
MIN => 1,
HOUR => 2,
MDAY => 3,
MON => 4,
YEAR => 5,
WDAY => 6,
YDAY => 7,
ISDST => 8,
};

ein paar abwärts probleme gibt!
<< >> 5 Einträge, 1 Seite



View all threads created 2005-01-28 15:12.