Differentiate constructor and a method and how are it be
used?
Answer Posted / vishwanath
mainly there are
i.constructor name is same as the class name whereas method name doesn't.
ii.constructor is implicitly called when an object is created.....but the method is explicitly called by using object.
iii.constructor has no return type hence it doesn't return anything.....but method has return type.
iv.constructor is used to create and initialize data members.....where as method is created to code the specific task.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is locale?
How can we create a synchronized collection from given collection?
what is the role of xml in core java?? and how we can use it?? can somebody give a sample program with explanation and from where i can read more about xml?????
Is multiple inheritance supported by java?
If a method is declared as protected, where may the method be accessed?
How do I run java on windows?
What is the difference between Error, defect,fault, failure and mistake?
What are the advantages of arraylist over arrays?
Explain about strings in java?
What is meant by nested loop?
Write a program to find the greatest of three numbers in java?
What is final variable?
Can java list be null?
What access modifiers can be used for variables?
What are wrapped classes in java programming?