flutter_프로젝트/0_초보_코드모음

flutter 코드 모음 - class 의 가장 간단한 예

studyapps 2025. 3. 16. 15:34

클레스 처음 배우면 나오는 예제

 

class Car {
  String name;
  int price;
  int maxSpeed;

  Car({required this.name, required this.price, required this.maxSpeed});
 
  void sale(){
    price = (price * 0.9).toInt();
  }
}


void main() {

  Car bmw = Car(name: 'x5', price: 1000, maxSpeed: 250);
  print (bmw.name);
  print (bmw.price);
  bmw.sale();
  print ('세일 후 가격 ${bmw.price}');
  bmw.sale();
  print ('세일 후 가격 ${bmw.price}');
  bmw.sale();
  print ('세일 후 가격 ${bmw.price}');
}