Explain role of constructor in a java application?
Answers were Sorted based on User's Feedback
Answer / sonal
Without a constructor u cannot make an object or instance
of a class.
Every class must have a constructor. If no constructor is
provided the complier will provide default constructor at
run time.
Is This Answer Correct ? | 33 Yes | 2 No |
Answer / sindhura
A constructor in java has the same name as that of the
class. Whenever the statement such as classname objectname
is encountered, it calls the constructor to initialise the
values for the object. It doesnot return anything and as
soon as the object is created constructor would be called.
ex. : if there is a class called A
A a = new A();
here A a statement would call the constructor immediately
to initialise the values for a object.
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / mr. ashwani hundwani
A constructor is a member function of a class,which gets
automatically called when a class is instantiated(i.e when
object is created),compiler automatically provides default
constructor(with no arguments).
It has same name as that of class
***Constructor is best utilized for initializing the data
members.*****
rather than writing methods to provide the values to data
members we can pass them through consturctor at the time of
instantiation.EX-
import java.util.*;
class shape
{
int length;
public shape(int len)//constructor should be public
{
length=len;
}
}
class abc
{
public static void main(String a[])
{
shape obj=new shape(5);/*passing a integer value to
constructor of class shape*/
}
}
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / harini
The main purpose of construtor is to initialize instance
variables.
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / harsh
Constructor is "object creator".
its role is to create objects thats it.
Is This Answer Correct ? | 3 Yes | 0 No |
What is difference between Iterator and for loop
Suppose there is an array list [10,5,20,19,15,24].Print them in ascending & descending order in collection framework concept ???
I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?
What is remote method invocation (rmi)?
how does multithreading take place on a computer with a single cpu? : Java thread
Differences between GridLayout and GridBagLayout?
What are the names of Component subclasses that support painting?
Can we write method inside a method in java?
How thread scheduler schedule the task?
how a programmer confirms that the data submitted has been succesfully inserted into the database(either oracle or my sql).. How a programmer confirm if there is any problem with the program he wrote for insertion
Can a class have multiple subclasses?
How do you convert boolean to boolean?