Why do we need a constructor to set up start values for attributes when we can already set them right after declaring attributes | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why do we need a constructor to set up start values for attributes when we can already set them right after declaring attributes

For example: public class Class{ int a = 3; int b = 5; Or: public class Class{ int a,b; public Class() { a = 3; b = 5; }

27th Apr 2017, 4:20 PM
Tina
3 Answers
+ 12
You can use different constructors for different objects. Constructors increase flexibility of the program. Also, inputs from the user can be given via an object to the constructor.
27th Apr 2017, 4:25 PM
Pixie
Pixie - avatar
+ 11
Usually you pass the values for the attributes as arguments to the constructor and then set it there.
27th Apr 2017, 4:25 PM
Tashi N
Tashi N - avatar
+ 3
Constructor is needed to initialize the initial state of the instance. If you have one instance it is possible to initialize an attributes like in your first example, but if you have a hundreds of instances of one class you need a constructor.
27th Apr 2017, 4:36 PM
Alexey
Alexey - avatar