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 validate() and reset() method does ?
What is spring and struts in java?
How can we upload files in Struts2 application?
Does apache struts run on windows?
At the point, you should go for struts framework?
How to use dispatchaction?
Are interceptors and filters different?
Describe the basic steps used to create a tiles application?
What is jakarta struts framework?
How to upload struts file?
What is the purpose of @intrangefieldvalidator annotation?
What are apache struts?
State an example of struts configuration file as an action parameter for action servlet.
What are the core classes of struts framework? Explain
Which tag is used to declare constants in struts xml?