Mixins의 용도는 무엇입니까?
3529 단어 beginnersflutterdartprogramming
믹스인이란?
Dart는 다중 상속을 지원하지 않지만 Maxins는 다중 상속을 달성할 수 있는 기능을 제공합니다. 간단히 말해서 믹스인은 클래스를 확장하지 않고 메서드와 변수를 빌릴 수 있는 클래스입니다. Dart는 이를 위해
with
라는 키워드를 사용합니다.예를 들어,
Car 클래스가 있고 이 상황에서 Car 클래스의 Brand 및 Model 두 클래스 메소드에 액세스하려고 합니다. 믹스인은 키워드
with
를 사용하여 이를 달성할 수 있는 기회를 제공합니다.class Brand {
void getBrand({required String carBrand}) {
print("Brand name : $carBrand");
}
}
class Model {
void getModel({required String carModel}) {
print("Model : $carModel");
}
}
class Car extends Brand with Model { //calling Brand and Model both classes at the same time
void getCarDetails({required String carBrand, required String carModel}) {
print("Hey, here is my car details");
getBrand(carBrand: carBrand);
getModel(carModel: carModel);
}
}
void main() {
Car car = Car();
car.getCarDetails(carBrand: 'Tex', carModel: '1976 Cadillac Coupe DeVille');
}
이제 Dart에서 믹스인의 개념을 이해하셨기를 바랍니다. 읽어주셔서 감사합니다.
Reference
이 문제에 관하여(Mixins의 용도는 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/yourmdsarfaraj/what-is-the-use-of-mixins-4m36텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)