diff options
author | Kang-min Liu <gugod@gugod.org> | 2020-05-29 00:05:12 +0800 |
---|---|---|
committer | Kang-min Liu <gugod@gugod.org> | 2020-05-29 00:05:12 +0800 |
commit | 63ae3055a02127ed2b9890bb4e72ee925c2994bf (patch) | |
tree | 59c959c22040b80e35a4dba068a263426b2c84b7 /zh-tw | |
parent | 095c07af91c64e02f4b869f8c74fcddde5f7d6f2 (diff) |
Remove that English paragraph.
Diffstat (limited to 'zh-tw')
-rw-r--r-- | zh-tw/perl-tw.html.markdown | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/zh-tw/perl-tw.html.markdown b/zh-tw/perl-tw.html.markdown index 0286a75d..86b3ce24 100644 --- a/zh-tw/perl-tw.html.markdown +++ b/zh-tw/perl-tw.html.markdown @@ -265,12 +265,6 @@ trim($string); #### 物件 -# Objects in Perl are just references that know which class (package) -# they belong to, so that methods (subroutines) called on it can be -# found there. The bless function is used in constructors (usually new) -# to set this up. However, you never need to call it yourself if you use -# a module like Moose or Moo (see below). - # Perl 中的物件,只是個參照,但同時又知道自己屬於哪個類別(package),於是對自身 # 調用方法(函式)時方知去何處尋找函式本體。在建構子(通常是 "new")中,都是以 # "bless" 函式來標記參照與其類別。只不過,若你使用像 Moose 或 Moo 模組的話,這些 |