manpagez: man pages & more
man Tie::StdHandle(3)
Home | html | info | man
Tie::StdHandle(3pm)    Perl Programmers Reference Guide    Tie::StdHandle(3pm)




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.



perl v5.24.0                      2016-02-05               Tie::StdHandle(3pm)

perl 5.24 - Generated Sat Nov 26 07:50:25 CST 2016
© manpagez.com 2000-2024
Individual documents may contain additional copyright information.