- 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:

- The DevOps 2.3 Toolkit
- LabVIEW程序設(shè)計基礎(chǔ)與應(yīng)用
- C語言程序設(shè)計(第2版)
- Java程序員面試算法寶典
- Python高級機器學(xué)習(xí)
- C程序設(shè)計案例教程
- Unity 2017 Mobile Game Development
- Getting Started with React Native
- 一本書講透Java線程:原理與實踐
- Python+Tableau數(shù)據(jù)可視化之美
- Python 3.7從入門到精通(視頻教學(xué)版)
- 硬件產(chǎn)品設(shè)計與開發(fā):從原型到交付
- SQL Server 2008中文版項目教程(第3版)
- Learning Jakarta Struts 1.2: a concise and practical tutorial
- Python 3快速入門與實戰(zhàn)