1. 程式人生 > >C#基礎-類

C#基礎-類

ring 對象 code ace args 賦值 pre str image

using System;

namespace ConsoleApp4
{
    class Program
    {
        static void Main(string[] args)
        {
            // 類的實例化:對象
            Student stu = new Student();
            // 給對象賦值
            stu.name = "Joe";
            stu.stuNo = 1001;
            stu.age = 21;
            Console.WriteLine("學生的姓名:" + stu.name);
            Console.WriteLine("學生的學號:" + stu.stuNo);
            Console.WriteLine("學生的年齡:" + stu.age);
        }


    }

    // 定義類的兩種方法,
    //1/在源文件基礎上添加
    //2/單獨在文件添加

    public class Student
    {
        // 定義變量
        public string name;
        public int stuNo;
        public int age;

    }
}

定義類的兩種方法,

1.在源文件基礎上添加

public class Student
{
    // 定義變量
    public string name;
    public int stuNo;
    public int age;

}

2.單獨在文件添加
技術分享圖片

類的實例化

 static void Main(string[] args)
        {
            // 類的實例化:對象
            Student stu = new Student();
            // 給對象賦值
            stu.name = "Joe";
            stu.stuNo = 1001;
            stu.age = 21;
            Console.WriteLine("學生的姓名:" + stu.name);
            Console.WriteLine("學生的學號:" + stu.stuNo);
            Console.WriteLine("學生的年齡:" + stu.age);
        }

C#基礎-類