C # Four usage of this keyword _c# tutorial

Source: Internet
Author: User
Tags readline

The example of this article for everyone to share the C # this keyword four uses, for your reference, the specific contents are as follows

Usage A this represents the current instance, using this. To explicitly invoke methods and members of a class

Namespace Demo
{public
  class Test
  {
    private string scope = ' global variable ';
    public string GetResult ()
    {
      string scope = ' local variable ';
Here, this represents the instance of test, so this.scope points to a global variable, and scope accesses the local variable 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 ();
      }

    }
  }


usage Two implements an extension of the original type through this (detailed next article)

usage three through this implementation indexer, can be used to optimize program performance (next detailed)

usage four using this series constructor

Namespace Demo
{public
  class test
  {public
    test ()
    {
      Console.WriteLine ("parameterless constructor");
    }
    Here the This () points to a test () parameterless constructor
    //equivalent to inheriting the parameterless constructor public
    Test (string text): this ()
    {
      //The program will first execute test ( ) without a parameter function, and then continue to execute
      Console.WriteLine (text);
      Console.WriteLine ("Parameter constructor");
    }

  Class program
  {
    static void Main (string[] args)
    {
      try
      {
        test test = new Test ("John");
      }
      catch (Exception ex)
      {
        Console.WriteLine (ex);
      }
      Finally
      {
        console.readline ();
      }
  }}
}

The above is the entire content of this article, I hope to help you learn, but also hope that we support the cloud habitat community.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.