what diff bw constructor method & method

Answers were Sorted based on User's Feedback



what diff bw constructor method & method..

Answer / boopathy

method only accessed after create class object,
but constructor method access when object initialized

Is This Answer Correct ?    10 Yes 0 No

what diff bw constructor method & method..

Answer / prasad

A CONSTRUCTOR METHOD IS A METHOD USED TO PERFORM CUSTOM
INITIALIZATIONS.
AND A NORAMAL METHOD IS HAVING INSTANCE VARIABLES AND METHODS

Is This Answer Correct ?    4 Yes 2 No

what diff bw constructor method & method..

Answer / sowjanya

constructor is special method with the basic initialization
information of the class variables.this constructor is
accessed at the time of object creation .from this object is
created with initial assignment values of variables. and we
can't call constructor separately.
if you have more than one constructor default constructor is
invoked at the object creation time and we can call other
constructor as we need .
constructor name is same as class name this is way to
identify methods is constructor.
methods are not invoked not default we call that as we
need.method name is not a class name.

Is This Answer Correct ?    2 Yes 0 No

what diff bw constructor method & method..

Answer / jasbir singh

a constructor method's name is same as the name of class,
secondly, you cannot manually call the constructor method
after creating the object.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Java Related AllOther Interview Questions

Is jprofiler open source?

0 Answers  


Why java?

0 Answers  


what type of java questions asked?

1 Answers  


Is lambda cheaper than ec2?

0 Answers  


What is the difference between collection and stream?

0 Answers  






What is spliterator in java se 8?

0 Answers  


hibernate3.jar file contain 7 dependency jar files what is that ?

1 Answers  


Is openjdk the same as jdk?

0 Answers  


What is interceptors in java?

0 Answers  


What if I do not provide the string array as the argument to the method?

0 Answers  


What do I need to install netbeans?

0 Answers  


What is the singleton class in java?

3 Answers  


Categories