程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# this用法系列(一) this指向當前實例,

C# this用法系列(一) this指向當前實例,

編輯:C#入門知識

C# this用法系列(一) this指向當前實例,


this關鍵字代表當前實例,我們可以用this.來調用當前實例的成員方法,變量,屬性,字段等

namespace Demo
{
    public class Test
    {
        private string scope = "全局變量";
        public string getResult()
        {
            string scope = "局部變量";
       // 在這裡,this代表Test的實例,所以this.scope指向的是全局變量,scope所訪問的是局部變量 return this.scope + "-" + scope; } } class Program { static void Main(string[] args) { try { Test test = new Test(); Console.WriteLine(test.getResult()); } catch (Exception ex) { Console.WriteLine(ex); } finally { Console.ReadLine(); } } } }

下一篇,分享this關鍵字之為原始類型擴展方法

  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved