this 关键字

来源:互联网 发布:sql server 2008使用 编辑:程序博客网 时间:2024/05/28 15:43

this 关键字在类中,用于访问该类的成员。当类实例化后,this代表被实例化的对象。

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ThisTest
{
    class Person
    {
        private string name;
        private int age;
        private string hobby;
        public Person(string name, int age, string hobby)
        {
            this.name = name;            //在这里this 代表类的本身,故=得左边的this.name代表类的字段,=右边name代表局部变量
            this.age = age;
            this.hobby = hobby;
        }
        public void Display()
        {
            Console.WriteLine(this.name +", "+this.age +
                "岁, 喜欢"+this.hobby);
        }
    }
}

原创粉丝点击