Why should I use constructor to initialize instance variables while it is possible at the point of their declaration?
class Frog {
public int x = 4;
Frog() { // Why should I use you }
}
|
Why should I use constructor to initialize instance variables while it is possible at the point of their declaration?
|
|||||
|
|
|||
|
|
|
If the only initializations you need are of the You need a constructor if the initialization you're doing is more complex than that. Perhaps you need to open a database connection. Or perhaps (more simply) the value of |
|||||||
|
|
Because constructors of a class should fully initialize a class, and users should have the opportunity to set that value if they wish. So your class should be:
|
|||
|
|
|
We need a constructor to increase flexibility with which we can initialize objects. We can initialize all variables of objects at one go and with any value at any time. By initializing we bind that value to a variable. Also if need arises to initialize a variable permanently,one can achieve that with final keyword before variable initialization. |
|||
|
|
|
My five cents. Sometimes it's needed to introduce few constructors, they initialize variables differently. |
|||
|
|
|
U Can use a constructor to fill private data of that object. Because if x isn't public, you wouldn't be able to access it. Offcourse when both are public, you can use the constructor to place all the initializing in one place, which makes it easier to read by colleagues, |
|||||
|