- Perl 6 Deep Dive
- Andrew Shitov
- 471字
- 2021-07-03 00:05:41
Classes
To make the user experience better, let's take a look at another important example of where the syntax of Perl changes in Perl 6.
Traditionally, object-oriented programming is done in Perl 5 with the help of the so-called blessed hashes. Data members of an object are elements of the hash, and the blessed reference to that hash may be used to call a method on an instance of the class. The following example shows you what to do to define a class and create an instance of it in Perl 5:
package MyClass; sub new { my ($class) = @_; my $this = { counter => 0 }; bless $this, $class; return $this; } sub inc { my ($this) = @_; $this->{counter}++; return $this->{counter}; } 1;
So far, the class named MyClass has two methods—new, to create a new instance, and inc, to increment the counter and return the new value. When dealing with Perl 5's classes, don't forget to return a true value at the end of the module, and that is the goal of the 1 in the last line of the file.
In the main program, you can use MyClass by creating an instance and calling methods on the variable as follows:
use MyClass; my $var = MyClass->new; print $var->inc, "\n"; print $var->inc, "\n"; print $var->inc, "\n";
The implementation of the object-oriented things in Perl 5 was another obstacle for newcomers who may have had an experience of working with classes in other languages but were confused by the way Perl 5 created them.
Classes in Perl 6 are way more familiar to developers who have worked with other object-oriented programming languages.
This is how you define the same class, as shown in the preceding example, in Perl 6:
class MyClass { has $!counter; method inc() { $!counter++; return $!counter; } }
As you see, the whole class is defined within the pair of braces. Its data members are explicitly declared with the has keyword, and there's no need to return 1 at the end of the file.
Now, create an object of the class and increment the internal counter three times, like we did in the Perl 5 example earlier. This is how you do it in Perl 6:
my $var = MyClass.new; say $var.inc; say $var.inc; say $var.inc;
Do not focus on the details yet because it will all be explained in later chapters.
So far, we've seen three examples of where it was desired to improve the syntax of Perl 5.
To see more examples of changes between Perl 5 and Perl 6, you may refer to a few articles grouped under the title 'Perl 5 to Perl 6 guide' in the documentation of Perl 6 at https://docs.perl6.org/language.html, which is dedicated to that specific topic:

- Java 開發(fā)從入門到精通(第2版)
- 小創(chuàng)客玩轉(zhuǎn)圖形化編程
- C# 從入門到項(xiàng)目實(shí)踐(超值版)
- Hands-On Data Structures and Algorithms with JavaScript
- FFmpeg入門詳解:音視頻原理及應(yīng)用
- C++面向?qū)ο蟪绦蛟O(shè)計(jì)習(xí)題解答與上機(jī)指導(dǎo)(第三版)
- Getting Started with LLVM Core Libraries
- SQL Server數(shù)據(jù)庫管理與開發(fā)兵書
- Learning Nessus for Penetration Testing
- 官方 Scratch 3.0 編程趣味卡:讓孩子們愛上編程(全彩)
- 你真的會寫代碼嗎
- 微信小程序開發(fā)邊做邊學(xué)(微課視頻版)
- Parallel Programming with Python
- HTML5+CSS+JavaScript深入學(xué)習(xí)實(shí)錄
- Eclipse開發(fā)(學(xué)習(xí)筆記)