- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2015-01-28 21:32 编辑
回复 1# hbr1234stc
$ perl in.pl
a=1
b=1
a+b=2
$ cat in.pl
use strict;
use warnings;
$| = 1;
print "a=";
my $sA = <STDIN>;
print "b=";
my $sB = <STDIN>;
print "a+b=" . ($sA + $sB) . "\n";
$ perldoc perlvar
NAME
perlvar - Perl predefined variables
DESCRIPTION
The Syntax of Variable Names
Variable names in Perl can have several formats. Usually, they must begin
with a letter or underscore, in which case they can be arbitrarily long
(up to an internal limit of 251 characters) and may contain letters,
digits, underscores, or the special sequence "::" or "'". In this case,
the part before the last "::" or "'" is taken to be a package qualifier
see perlmod.
...
HANDLE->autoflush( EXPR )
$OUTPUT_AUTOFLUSH
$| If set to nonzero, forces a flush right away and after every write
or print on the currently selected output channel. Default is 0
(regardless of whether the channel is really buffered by the
system or not; $| tells you only whether you've asked Perl
explicitly to flush after each write). STDOUT will typically be
line buffered if output is to the terminal and block buffered
otherwise. Setting this variable is useful primarily when you are
outputting to a pipe or socket, such as when you are running a
Perl program under rsh and want to see the output as it's
happening. This has no effect on input buffering. See "getc" in
perlfunc for that. See "select" in perlfunc on how to select the
output channel. See also IO::Handle.
Mnemonic: when you want your pipes to be piping hot.
|
|