in reply to Possibly Stupid OOP question
Your imports appear to me to be useless. re your new and import calls, please try to avoid indirect object syntax ("method $object args", or "method Class args"). Use $object->method(args) or Class->method(args) instead. Indirect object syntax has some gotchas.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Possibly Stupid OOP question (order)
by tye (Sage) on Feb 27, 2008 at 03:24 UTC | |
by jepri (Parson) on Feb 27, 2008 at 06:12 UTC | |
by tye (Sage) on Feb 27, 2008 at 06:36 UTC |