Movatterモバイル変換


[0]ホーム

URL:


functions /dump
(source,CPAN)
You are viewing the version of this documentation from Perl 5.005.View the latest version
#dump LABEL

This causes an immediate core dump. Primarily this is so that you can use theundump program to turn your core dump into an executable binary after having initialized all your variables at the beginning of the program. When the new binary is executed it will begin by executing agoto LABEL (with all the restrictions thatgoto suffers). Think of it as a goto with an intervening core dump and reincarnation. IfLABEL is omitted, restarts the program from the top. WARNING: Any files opened at the time of the dump will NOT be open any more when the program is reincarnated, with possible resulting confusion on the part of Perl. See also-u option inperlrun.

Example:

    #!/usr/bin/perl    require 'getopt.pl';    require 'stat.pl';    %days = ('Sun' => 1,'Mon' => 2,'Tue' => 3,'Wed' => 4,'Thu' => 5,'Fri' => 6,'Sat' => 7,    );    dump QUICKSTART if $ARGV[0] eq '-d';    QUICKSTART:    Getopt('f');

This operator is largely obsolete, partly because it's very hard to convert a core file into an executable, and because the real perl-to-C compiler has superseded it.

Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via theGitHub issue tracker oremail regarding any issues with the site itself, search, or rendering of documentation.

The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via thePerl issue tracker, themailing list, orIRC to report any issues with the contents or format of the documentation.


[8]ページ先頭

©2009-2025 Movatter.jp