Tagged Questions
The class-factory tag has no wiki summary.
8
votes
5answers
140 views
pros and cons of using factory vs regular constructor
(Using Python 3.2, though I doubt it matters.)
I have class Data, class Rules, and class Result. I use lowercase to denote an instance of the class.
A rules object contains rules that, if applied to ...
6
votes
6answers
1k views
Python Class Factory to Produce simple Struct-like classes
While investigating Ruby I came across this to create a simple Struct-like class:
Person = Struct.new(:forname, :surname)
person1 = Person.new('John', 'Doe')
puts person1 #<struct Person ...
2
votes
2answers
141 views
How to Reverse Dependency for Class Factory moved to a Library
The following code works very well when all involved classes are in the same project (determineSubClass is a member of BaseClass):
protected static BaseClass determineSubClass(String p1, int p2, ...
1
vote
2answers
248 views
Instantiate a inherited class using a static method from a base class
I have a abstract base class that I have many inherited classes coming off of. What I would like to do is a static member takes in a string, the first class that can parse the string (only one of the ...