Cover image

Flutter EP.2.1 Class และ Object ในภาษา Dart

7 Jun 2020

Share to:

สวัสดีครับ หลังจาก EP.2 เราได้เรียนรู้ Syntax ของภาษา Dart กันไปแล้ว สําหรับ EP นี้ก็จะเป็น เนื้อหาเพิ่มเติมซึ่งจะเกี่ยวข้องกับ Class และ Object ในภาษา Dart

Class and Object

การสร้าง class และ object ใน Dart ก็จะคล้ายๆกับภาษาอื่นๆในโลกนี้ ไม่มีอะไรแตกต่างกันมาก

class People {
    int id;
    String name;

    void hello(){
        print('Hi, my name is $name');
    }
}

ส่วนการสร้าง Object ก็จะทําได้สองแบบคือ

var people = new People();  // จะใส่ new ก็ได้
var people = People();      // ไม่ต้องใส่ new ก็ได้

people.name = 'Thiti';
people.hello();

Private vs Public

ในภาษา Dart จะไม่มี Keyword ที่ใช้ระบุว่า Field ไหน หรือ Method ไหนเป็น Private หรือ Public แต่จะใช้ _ (underscore) นําหน้า Field หรือ Method ที่ต้องการจะให้เป็น Private ดังตัวอย่างนี้

class MyClass {
    int _privateField;
    int publicField;

    void _privateMethod() => 0
    void publicMethod() => 0
}

Getter Setter fields

ใน OOP ยุคเก่า การใช้งาน Getter หรือ Setter ก็จะสร้างตัวแปร Field ที่เป็น Private แล้วสร้าง Method Getter และ Setter มาครอบอีกที

แต่ในภาษา Dart ก็มี Getter และ Setter ให้ใช้ได้เลย ซึ่งจะสามารถใช้งานได้ตามตัวอย่างด้านล่างครับ

class People {
    String _name;

    // Getter
    int get name => _name;

    // Setter
    void set name(String name) => _name = name;

    // หรือแบบย่อ คือไม่ต้องใส่ void (Recommend)
    set name(String name) => _name = name;
}

Constructor

Constructor คือการกําหนดค่าเริ่มต้นครั้งแรกให้กับ Class ก็เหมือนๆกับภาษาอื่นๆทั่วไปครับ

class People {
    int _id;
    String _name;

    People(int id, String name){
        _id = id;
        _name = name;
    }
}

var people = People(1, 'Thiti');

หรือประกาศเป็นแบบ Named Parameter ก็ได้เช่นกัน

class People {
    int id;
    String name;

    People({this.id, this.name});
}

var people = People(id: 1, name: 'Thiti');

Named constructors

ภาษา Dart ไม่สามารถทำ Method Overloading หรือการสร้าง Method ชื่อเดียวกันรับ Parameter หลายแบบ จะไม่สามารถทําได้

แต่ Dart สามารถสร้าง Constructors หลายๆตัวได้ ซึ่งมีไว้เพื่อสร้าง Object หลายๆแบบ โดยเรียกว่า Named constructors ตัวอย่างตามนี้ครับ

class Point {
    int x, y;

    Point(this.x, this.y);

    Point.origin() {
        x = 0;
        y = 0;
    }
}

var point1 = Point(10, 20);
var point0 = Point.origin();

Factory constructors

นอกจาก Named constructors ภาษา Dart ก็ยังมี Factory constructors ให้ใช้อีก Factory constructors นั้นทำงานเหมือนกับ Constructor ทุกอย่าง แต่จะแตกต่างกันตรงที่ Constructor จะกําหนดค่าให้กับตัวเอง เนื่องจาก Constructor ถือเป็นเมธอดตัวหนึ่งของ object อยู่แล้ว แต่ว่า Factory constructors จะเป็นการสร้าง object ชิ้นใหม่ขึ้นมาเลย ดังนั้นจะไม่สามารถเรีกใช้ this เพื่อกําหนดค่าให้กับ Field ได้ตรงๆ ลองดูตัวอย่างครับ

class Profile{
    static Profile _instance;
    String name;

    Profile({this.name});

    factory Profile.fac1() => _instance ??= Profile(name: "Default name");
}

void main() {
  var profile1 = Profile.fac1();

  profile1.name = "Thiti";

  var profile2 = Profile.fac1();


  print('profile1: ${profile1.name}'); // profile1: Thiti
  print('profile2: ${profile2.name}'); // profile2: Thiti
}

เนื้อหาในบทความนี้ก็มีอยู่เท่านี้ครับ แล้วพบกัน EP หน้านะครับ ขอบคุณครับ

Suggestion blogs

swap memory ใน ubuntu

swap คือ file ประเภทหนึ่งที่ทําหน้าที่คลาย ram โดยจะต่างจาก ram ตรงที่ เป็นไฟล์ที่ถูกเขียนบน HDD ซึ่งจะมีความเร็วน้อยกว่า ram ในกรณีที่ ram ไม่พอ เราสามารถสร้าง swap มาใช้เป็น ram สํารองได้

หนังสือเดินทางท่องเที่ยว อุทยานแห่งชาติ (Passport)

เป็น passport สำหรับการท่องเที่ยวอุทยานแห่งชาติในเมืองไทย จัดทำขึ้นโดย ส่วนนันทนาการและสื่อความหมาย สำนักอุทยานแห่งชาติ กรมอุทยานแห่งชาติ สัตว์ป่า และพืชพันธ์ สามารถหาซื้อได้จากที่ทำการอุทยานแห่งชาติทุกที่ แต่ค่อนข้างหาซื้อยากครับเนื่องจากปีนึงจะจัดทำขึ้นปีละไม่กี่พันเล่ม

เขียนเกมส์ pacman ด้วย c/c++

สวัสดีครับ เมื่อไม่กี่วันมานี้มีน้องคนนึงมาให้สอนเขียนเกมส์ pacman ด้วยภาษาซี ผมจึงนํา source code มาแบ่งปัน เผื่อใครสนใจ ตัวเกมส์ก็ไม่มีอะไรมากครับเป็น console application มีตัว pacman และตัว bot โง่ๆ 4 ตัว เขียนบน visual studio 2013 ส่วนวิธีการเล่น คือใช้ w, s, a, d เป็นปุ่มบังคับทิศทาง


Copyright © 2019 - 2024 thiti.dev |  v1.41.0 |  Privacy policy | 

Build with ❤️ and Astro.

Github profile   Linkedin profile   Instagram   X profile   Youtube channel   Telegram   Email contact   วงแหวนเว็บ