프로젝트1_1. Dart의 기본 (4) - Class_2


프로젝트1_1. Dart의 기본 (4) - Class_2

저번 글 2023.06.14 - [단기 프로젝트] - 프로젝트1_1. Dart의 기본 (3) - Class 이번 글에서는 저번 글에 이어서 class에 대해 좀 더 알아본다. 추상 클래스와 프라이빗 변수, 제네릭과 스태틱, 케스케이드에 대해 살펴본다. 이전 포스트에 했었던 코드를 다시 보고 시작하도록 한다. //부모 클래스 class person { String name; String major; List lecture; person(this.name, this.major, this.lecture); void check_info() { print("name : ${this.name}"); print("major : ${this.major}"); print("lecture : ${this.lecture}"..


원문링크 : 프로젝트1_1. Dart의 기본 (4) - Class_2