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 filter dispatcher in struts?
How we can install struts?
Hi frnds Ima facing problm with tomcat configuration.kindly can any one tell to me what is the mistake iam doing.i already configured tomcat as fallowing http://www.ibm.com/developerworks/opensource/library/os-eclipse-tomcat/ even though iam getting the PortNO .and changed with different no of Ports but no working kindly can any one tell me what is the mistake iam doing........?
Does apache tomcat use struts?
What is apache struts framework?
Name the different types of actions found in struts.
I will explain the scenario now i have a form1 having some fields and i made it extends DynaActionForm. in struts config how can i specify another form form2 which has to extend the form1 please specify is it better to use actionform or dyna action form in applations. is dyna action form is comfortable in declaring form variables of type 'ArrayList<somegenerics>' extend the
what is the purpose of action servlet and action?
What is controller in struts ?
Who makes the struts?
What are apache struts?
what is the use of cvs in struts?