in reply to Re^2: Psychic Disconnect and Object Systems
in thread Psychic Disconnect and Object Systems
I don't recall reading about accessor, just reader and writer.
$o->an_accessor('foo'); $foo = $o->an_accessor(); $o->a_writer('foo'); $foo = $o->a_reader();
So, the built-in 'new' logic and the application of default don't go through the normal set function, so lack of one doesn't bother it.
Correct.
|
|---|