Chương 12 Quick tham khảo để làm này Khai báo tên lớp mới tiếp theo là một dấu hai chấm và tên của các lớp cơ sở. Ví dụ: Tạo một lớp nguồn gốc xuất phát: Base class từ một căn cứ (lớp . ) | Chapter 12 Quick Reference To Do this Declare the new class name followed by a colon and the name of the base class. For example Create a derived class from a base class class Derived Base . Supply a constructor parameter list before the body of the derived class constructor. For example class Derived Base Call a base class constructor . public Derived int x Base x . . Use the virtual keyword when declaring the method. For example class Mammal Declare a virtual method public virtual void Breathe . . Use the interface keyword. For example interface IDemo Declare an interface string Name string Description Implement an interface Declare a class using the same syntax as class inheritance and then To Do this implement all the member functions of the interface. For example class Test IDemo public string . public string .