Category : Perl6入門

Home » Perl6 » Archive by category : Perl6入門

Perl6 物件導向支援繼承,而且也支援多重繼承。我們來看一下繼承的簡易用法: # 父類別 P class P ..

Read more

Perl6 有非常豐富完整的物件導向功能,相較於 Perl5,Perl6 物件導向的語法更直覺、更好用,可以說 ..

Read more

Perl6 的函式內部,可以再定義其他函式,稱為 nested 巢狀函式。 用例:兩層的 sub levv { ..

Read more

除了利用參數的型態來判斷要叫用哪一個函式之外,Perl6 還可以根據一些預先設立的情況,來叫用不同功能的同名函 ..

Read more

做為新一代的程式語言,物件導向的功能可不能少,其中關於函式的重載(function overloading), ..

Read more

Perl 原本是種寬鬆資料型態(Perl is a loosely typed language)的程式語言, ..

Read more

Blocks 和 Pointy Blocks(即 { } 和 -> { })雖然也能傳入參數,但畢竟它不是副程 ..

Read more

Perl6 的 lambda: my &proc = -> $arg1, $arg2 { “pass in: ..

Read more

my ($, $, $real-care-about-it) = 1, 2, 3; say $real-car ..

Read more

Perl6 的複合指定運算子(compound assignment operators) 比 Perl5 多 ..

Read more