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

- Android Studio Essentials
- Instant Typeahead.js
- Visual C++串口通信技術(shù)詳解(第2版)
- 21天學(xué)通C++(第6版)
- 利用Python進(jìn)行數(shù)據(jù)分析(原書第3版)
- SQL Server從入門到精通(第3版)
- Mastering Business Intelligence with MicroStrategy
- Odoo 10 Implementation Cookbook
- Django實(shí)戰(zhàn):Python Web典型模塊與項(xiàng)目開發(fā)
- 零基礎(chǔ)學(xué)C語言程序設(shè)計(jì)
- Moodle 3 Administration(Third Edition)
- INSTANT LESS CSS Preprocessor How-to
- Java核心技術(shù)速學(xué)版(第3版)
- 分布式系統(tǒng)架構(gòu)與開發(fā):技術(shù)原理與面試題解析
- Perl 6 Deep Dive