简体   繁体   中英

Dart - Call Named Constructor using super vs class name

class Person {
  late String name;
  late int age;
  Person();
  Person.ap(this.name, this.age);
}

class Employee extends Person {
  Employee(String name, int age) : super.ap(name, age); // This works

  // This is giving error. The method 'ap' isn't defined in a superclass of 'Employee'.
  Employee(String name, int age) {
    super.ap(name, age);
  }
}

What's the difference of calling unnamed constructor using super or inside the parenthesis?

You are making two same-named constructors. Do something like this

class Employee extends Person {

Employee(String name, int age) : super.ap(name, age);

Employee.foo(String name, int age): super.ap(name, age);

}

try this, just create a setter function named ap in the Person class


     class Person {
          late String name;
          late int age;
          Person();
          Person.ap(this.name, this.age);
          
          ap(String name, int age){ //add this           
              this.name=name;
              this.age=age;
            }
        }
        
        class Employee extends Person {

          //here ap is name constructor 
          Employee(String name, int age) : super.ap(name, age);
          
          //here ap is setter function in the person class
          Employee.ap(String name, int age) {
            super.ap(name, age);
          }
        }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM