in reply to Re^2: eval "require $class" seems wrong
in thread eval "require $class" seems wrong
I was kinda suggesting the best practice was to avoid requireing dynamic class names completely, and address the problem at a higher level.
To answer your question directly, one can require either a class supplied as a bareword or a path. There isn't a way to require a class supplied in a scalar. In order to load a dynamically constructed class name, some use eval EXPR to do the former (e.g. Module::Pluggable), and some transform the class name into a path and use the latter (e.g. if). I have no idea why one cannot do require $class;.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: eval "require $class" seems wrong
by sgt (Deacon) on Aug 22, 2007 at 20:02 UTC | |
by ikegami (Patriarch) on Aug 22, 2007 at 20:12 UTC | |
by rvosa (Curate) on Aug 22, 2007 at 22:40 UTC | |
by sgt (Deacon) on Aug 23, 2007 at 09:20 UTC |