How to initialize variables in constructor body with Dart

1 Answer

0 votes
class Test {
  double x;
  double y;

  Test(double x, double y) : x = x + 1000, y = y + 1000 {
    print('this.x: ${this.x}');
    print('x: $x');
    print('this.y: ${this.y}');
    print('y: $y');
  }
}


void main() {
    Test(23, 98);
}




/*
run:

this.x: 1023.0
x: 23.0
this.y: 1098.0
y: 98.0

*/

 



answered Oct 7, 2022 by avibootz

Related questions

2 answers 185 views
185 views asked Oct 22, 2022 by avibootz
3 answers 236 views
1 answer 228 views
3 answers 213 views
213 views asked Oct 11, 2022 by avibootz
1 answer 122 views
1 answer 177 views
1 answer 197 views
...