I've just finished working on a few util scripts in Ruby to cut my
teeth and I was wondering what the best practice is with regards the
use of class methods.
I've just finished working on a few util scripts in Ruby to cut my
teeth and I was wondering what the best practice is with regards the
use of class methods.
I assume the second would only create a single instance of a
"fileutils" object, thus requiring less overhead than the first?
~Neowulf
Or
fu = FileUtils
(without the .new)
I don't think FileUtils.mv creates a new instance of FileUtils. These
are class methods, so you can call them directly on the class object
without instantiating the class.
···
--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407