You are viewing the version of this documentation from Perl blead. This is the main development branch of Perl. (git commit bea778667b99f669b66b2d36656eda5e3f763e65)

CONTENTS

#NAME

Tie::StdHandle - base class definitions for tied handles

#SYNOPSIS

package NewHandle;
require Tie::Handle;
@ISA = qw(Tie::Handle);
sub READ { ... }		# Provide a needed method
sub TIEHANDLE { ... }	# Overrides inherited method
package main;
tie *FH, 'NewHandle';

#DESCRIPTION

The Tie::StdHandle package provide most methods for file handles described in perltie (the exceptions are UNTIE and DESTROY). It causes tied file handles to behave exactly like standard file handles and allow for selective overwriting of methods.

AltStyle によって変換されたページ (->オリジナル) /