Files
flutter_first_station/test/grammer/oop/02.dart
2023-04-16 10:28:45 +08:00

12 lines
263 B
Dart

class Human {
String name = '';
double weight = 0;
double height = 0;
Human(this.name,this.weight,this.height);
}
void main(){
Human toly = Human("捷特",70,180);
print("Human: name{${toly.name},weight:${toly.weight}kg,height:${toly.height}cm}");
}