📄 class-struct.t
字号:
#!./perl -wBEGIN { chdir 't' if -d 't'; @INC = '../lib';}print "1..8\n";package aClass;sub new { bless {}, shift }sub meth { 42 }package MyObj;use Class::Struct;use Class::Struct 'struct'; # test out both formsuse Class::Struct SomeClass => { SomeElem => '$' };struct( s => '$', a => '@', h => '%', c => 'aClass' );my $obj = MyObj->new;$obj->s('foo');print "not " unless $obj->s() eq 'foo';print "ok 1\n";my $arf = $obj->a;print "not " unless ref $arf eq 'ARRAY';print "ok 2\n";$obj->a(2, 'secundus');print "not " unless $obj->a(2) eq 'secundus';print "ok 3\n";my $hrf = $obj->h;print "not " unless ref $hrf eq 'HASH';print "ok 4\n";$obj->h('x', 10);print "not " unless $obj->h('x') == 10;print "ok 5\n";my $orf = $obj->c;print "not " unless ref $orf eq 'aClass';print "ok 6\n";print "not " unless $obj->c->meth() == 42;print "ok 7\n";my $obk = SomeClass->new();$obk->SomeElem(123);print "not " unless $obk->SomeElem() == 123;print "ok 8\n";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -