My boss always says to use static factory methods, but I'm a beginner and can't understand it.
Please help me.
What's a "static factory method"?
|
My boss always says to use static factory methods, but I'm a beginner and can't understand it. Please help me. What's a "static factory method"? |
|||||
|
|
Simplified example. We don't want to provide direct access to the connections, because they're resource intensive. So we use a static factory method getDbConnection which creates a connection if we're below the limit. Otherwise, it tries to provide a "spare" connection, and finally fails with an exception if there are none. EDIT: Made my static factory method actually static. :) (It was intended to be before). Fixed a bug in getDbConnection().
|
|||||
|
|
The factory method pattern is a way to encapsulate object creation. Without a factory method, you would simply call the class's constructor directly: There are a few advantages to this pattern. One is that the factory can choose from many subclasses (or implementers of an interface) and return that. This way the caller can specify the behavior desired via parameters, without having to know or understand a potentially complex class hierarchy. Another advantage is, as Matthew and James have pointed out, controlling access to a limited resource such as connections. This a way to implement pools of reusable objects - instead of building, using, and tearing down an object, if the construction and destruction are expensive processes it might make more sense to build them once and recycle them. The factory method can return an existing, unused instantiated object if it has one, or construct one if the object count is below some lower threshold, or throw an exception or return As per the article on Wikipedia, multiple factory methods also allow different interpretations of similar argument types. Normally the constructor has the same name as the class, which means that you can only have one constructor with a given signature. Factories are not so constrained, which means you can have two different methods that accept the same argument types: |
|||||||||||||||
|
|
Readability can be improved by static factory methods: Compare
to
|
||||
|
|
|
It all boils down to maintainability. The best way to put this is whenever you use the The factory pattern lets you separate how you create an object from what you do with the object. When you create all of your objects using constructors, you are essentially hard-wiring the code that uses the object to that implementation. The code that uses your object is "dependent on" that object. This may not seem like a big deal on the surface, but when the object changes (think of changing the signature of the constructor, or subclassing the object) you have to go back and rewire things everywhere. Today factories have largely been brushed aside in favor of using Dependency Injection because they require a lot of boiler-plate code that turns out to be a little hard to maintain itself. Dependency Injection is basically equivalent to factories but allows you to specify how your objects get wired together declaratively (through configuration or annotations). |
||||
|
||||
|
|
|
NOTE! "The static factory method is NOT the same as the Factory Method pattern" (c) Effective Java, Joshua Bloch. Factory Method: "Define an interface for creating an object, but let the classes which implement the interface decide which class to instantiate. The Factory method lets a class defer instantiation to subclasses" (c) GoF. "Static factory method is simply a static method that returns an instance of a class." (c) Effective Java, Joshua Bloch. Usually this method is inside a particular class. The defference: The key idea of static factory method is to gain control over object creation and delegate it from constructor to static method. The decision of object to be created is like in Abstract Factory made ouside the method (in common case, but not allways). While the key (!) idea of Factory Method is to delegate decision of what instance of class to create inside Factory Method. E.g. classic Singleton implementation is a special case of static factory method. Example of commonly used static factory methods:
|
|||
|
|
|
If the constructor of a class is private, you cannot create an object for that class from outside of it.
We cannot create an object outside of this class to access x, y. Then what is the use of this class?
So now u can create an object for this class from outside of it. Like the way...
A static method which returns the object of the class by executing the private constructor of the class is called FACTORY method |
|||
|
|
|
A factory method a method that abstracts away the instantiation of an object. Generally factories are useful when you know that you need a new instance of a class that implements some interface but you don't know the implementing class. This is useful when working with hierarchies of related classes, a good example of this would be a GUI toolkit. You could simply hard-code calls to the constructors for concrete implementations of each widget but if you ever wanted to swap one toolkit for another you'd have a lot of places to change. By using a factory you reduce the amount of code you would need to change. |
|||||
|
|
A static factory method is good when you want to ensure that only one single instance is going to return the concrete class to be used. For example, in a database connection class, you may want to have only one class create the database connection, so that if you decide to switch from Mysql to Oracle you can just change the logic in one class, and the rest of the application will use the new connection. If you want to implement database pooling, then that would also be done without affecting the rest of the application. It protects the rest of the application from changes that you may make to the factory, which is the purpose. The reason for it to be static is if you want to keep track of some limited resource (number of socket connections or file handles) then this class can keep track of how many have been passed out and returned, so you don't exhaust the limited resource. |
|||
|
|
|
a static factory method is:
|
|||
|
|