オープンソース・ソフトウェアの開発とダウンロード

CVS リポジトリの参照

Annotation of /perldocjp/docs/modules/Clone-0.09/Clone.pod

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Wed Sep 18 02:24:55 2002 UTC (21 years, 7 months ago) by hippo2000
Branch: MAIN
Initial

1 hippo2000 1.1 =head1 名前
2    
3     Clone - ネストしているオブジェクトの再帰的コピーのためのPerl拡張
4    
5     =head1 書き方
6    
7     use Clone;
8    
9     push @Package::A::ISA, 'Clone';
10    
11     $a = new Package::A;
12     $b = $a->clone;
13    
14     # あるいは
15     use Clone qw(clone);
16    
17     $b = clone($a,1);
18    
19     =head1 説明
20    
21     Cloneモジュールはネストし、tieされている変数も含めて、
22     ハッシュ、配列、そしてスカラのオブジェクトの再帰的なコピーを作成する
23     cloneメソッドを提供します。オプションのパラメータによってコピーの深さを
24     制限することが出来ます。
25    
26     =head1 作者
27    
28     Ray Finch, ray@classmates.com
29    
30     Copyright 2000 Ray Finch.
31    
32     This module is free software; you can redistribute it and/or
33     modify it under the same terms as Perl itself.
34    
35     =head1 参考資料
36    
37     perl(1), Storable(3).
38    

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26