オブジェクト指向のモジュール 9 モジュールはオブジェクトを提供する オブジェクトとメソッドで仕事をする オブジェクトはスカラ変数に代入できる 例: IO::File ファイルハンドルのオブジェクト版 use IO::File; $fh = IO::File->new(); # ファイルハンドルオブジェクトを生成 $fh->open(">$file"); # open(FH, ">$file")相当 $fh->autoflush(); # $| = 1に相当 $fh->print(...); # print FH ... $fh->close(); # close(FH) 他のオブジェクト指向モジュール LWP::UserAgent, HTTP::Request, Jcode, Tk::*, ……