what happen if the private constructor is written in a claass
Answers were Sorted based on User's Feedback
Answer / venkateshk
If private constructor is written in a class is preventing
to create objects for the class from outside of class.
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / 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 |
Answer / ravi kumar
If we write the private constructor, it is not possible to
create the object for the class. If we want to create the
object for the class, we need to write the default
constructor, which is a public one.
| Is This Answer Correct ? | 0 Yes | 4 No |
What is the purpose of @action annotation?
What is struts framework in java?
we have two applications A1 & A2 both are accesing the same databse table employee at the same time how we will manage this so that both application can get the correct no of emloyee while A1 is inserting a employee at the same time while other applicatuion is getting the empployee list.
What is struts actionmapping?
How the flow of various requests happens in struts application?
What is the use of token interceptor in Struts2?
Can we have multiple struts config files ?
What are construction struts?
Is it possible to create mulitple instance of one Action Class in struts?
Briefly tell the two kinds of form beans.
How is a lookup dispatch action created?
What is the purpose of @conversion?