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

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

1 Answers  


What is difference between loosely coupled and tightly coupled in java?

1 Answers  


Explain the inheritance principle.

1 Answers  


Is jpa a framework?

1 Answers  


What is the use of flatmap?

1 Answers  


What is class path in java?

1 Answers  


Why is javac not recognized?

1 Answers  


How do I install java re?

1 Answers  


What is a service layer in java?

1 Answers  


How can I swap two variables without using a third variable?

1 Answers  


What is the difference between map and flatmap in java?

1 Answers  


What are the Advantages of java se 8 new features?

1 Answers  


Categories