C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > C# this关键字

C# 中this关键字的主要作用

作者:hemingyang97

this 关键字在C#中主要用于引用当前对象,区分字段与局部变量,调用其他构造函数以及传递当前对象给其他方法或构造函数,本文重点介绍C# this关键字的作用,感兴趣的朋友一起看看吧

在C#中,this 关键字有以下几种主要作用:

引用当前对象:this 用于引用当前类的实例。可以通过 this 关键字来访问当前对象的成员变量、方法和属性。

class MyClass
{
    private int myVar;
    public void SetVar(int var)
    {
        this.myVar = var; // 使用 this 关键字引用当前对象的成员变量
    }
}

区分字段与局部变量:当成员变量和局部变量同名时,可以使用 this 关键字来区分。

class MyClass
{
    private int myVar;
    public void SetVar(int myVar)
    {
        this.myVar = myVar; // 使用 this 关键字指定成员变量
    }
}

在构造函数中调用其他构造函数:可以使用 this 关键字来调用同一个类中的其他构造函数。

class MyClass
{
    private int myVar;
    public MyClass(int var)
    {
        this.myVar = var;
    }
    public MyClass() : this(0) // 调用另一个构造函数
    {
    }
}

传递当前对象给其他方法或构造函数:可以使用 this 关键字将当前对象作为参数传递给其他方法或构造函数。

class MyClass
{
    public void Method()
    {
        AnotherClass.DoSomething(this); // 将当前对象传递给另一个方法
    }
}

使用this添加扩展方法

using System;
public static class StringExtensions
{
    public static int WordCount(this string str)
    {
        return str.Split(new char[] { ' ', '.', '?' }, StringSplitOptions.RemoveEmptyEntries).Length;
    }
}
class Program
{
    static void Main()
    {
        string sentence = "Hello, world! This is a sentence.";
        int wordCount = sentence.WordCount();
        Console.WriteLine($"The sentence has {wordCount} words.");
    }
}

总的来说,this 关键字在C#中主要用于引用当前对象,区分字段与局部变量,调用其他构造函数以及传递当前对象给其他方法或构造函数

到此这篇关于C# this关键字的作用的文章就介绍到这了,更多相关C# this关键字内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文