I have a class that I use to do certain calculations.
it has some methods thatare called by other classes to do stuff like pick a random letter.
now my question is how can I make this as fast as posibble.
lets call this object “calc”
should I create a local instance of this “calc” object every time I want to use one of its methods?
or should I create this “calc” once in every object that uses calc and then use that link to call a method?