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 classes in java?
Define a package.
Where is singleton pattern used?
Can we override constructor?
What are variable names?
Tell me how many ways are there to initialise an integer with a constant.
What is %d in printf?
How many bytes is a unicode character?
Is string is a keyword in java?
Is java based on c?
What is exception in java?
What is the final access modifier in java?
What is double in java?
Is it possible for yielded thread to get chance for its execution again ?
What is indexof?