C# class, object, method, constructors, getter, setter, static


class (blueprint)

class is basically just a specification for a new data type, so it use to model real word entities inside of our program.

In other words class is like blueprint for a new data type in our program.

Generally when we create new class, we need to name it with capital letter.

constructors

constructors will run every time when the new object is created.

private

Only code that is contained inside of the Book class can access attribute or method with private modifier.

getter, setter

We can use getter to get private attribute value.

We can use setter to validate user input value whether comply with a standard.

static

When we create static modifier, we don't need to initialize actual object before using it.

The static attribute setting attribute or method belong to class not object.

class Book
{
    // attribute
    public string title;
    public string author;
    private int pages;
    public static int bookCount = 0;

    // method
    public bool checkBook() 
    {
    }

    public static void BookName(string name)
    {
        Console.WriteLine(name);
    }

    // getter, setter
    public int Pages
    {
        get{ return pages; }
        set{
            if (value > 0 || value < 100)
            {
                this.pages = value;
            } 
        };
    }

    // constructors
    public Book(string title, string author, string pages)
    {
        this.title = title;
        this.author = author;
        this.pages = pages;
    }
}

object (actual)

The instance of class.

Each individual objecthave their own attribute value.

Book book1 = new Book();
Console.WriteLine(Book.bookCount)
Book.BookName("123")
#C# Note






你可能感興趣的文章

Week1 筆記| [CMD101] Command Line 學習筆記

Week1 筆記| [CMD101] Command Line 學習筆記

「margin : atuo」與「margin : 0 auto」 有什麼差別?

「margin : atuo」與「margin : 0 auto」 有什麼差別?

初試啼聲,只用原生 JS 跟 CSS 寫「口罩地圖 」Ep.02

初試啼聲,只用原生 JS 跟 CSS 寫「口罩地圖 」Ep.02






留言討論