what happen if the private constructor is written in a claass
Answer Posted / diego antonio
Yes! You can!
1.- You could have serveral constructors by requesting
different parameters set: if any of them is public, you can
use it.
2.- you could have an static method (which does not need
instance of the class) named, by example,
getNewInstance(...) which internally uses the private
constructor to instance a class (as in the factory pattern),
or as in the Singleton pattern to get the only one instance
(private and static instance).
3.- If several constructors exists, the private ones could
be called from others, but never used externally to the
class implementation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are Struts2 core components?
How you will make available any message resources definitions file to the struts framework environment?
Can we have more than one struts-config.xml file for a single struts application?
How can link tag’s action attribute be used?
What is the purpose of @conversion annotation annotation?
What does action do in struts?
How the exceptions are handled in struts?
What are the important methods of actionform?
What configurations are stored in struts configuration file ?
What is used to display the intermediate result in an interceptor?
When should we use SwtichAction?
What is interceptor in Struts2?
Which configuration files are used in struts?
What is the role of action class?
What are the differences between Struts1 and Struts2 or how Struts2 is better than Struts1?