C#中this指针的用法

 我来答
wokaoyunyunyun
推荐于2017-09-01 · TA获得超过318个赞
知道答主
回答量:239
采纳率:0%
帮助的人:189万
展开全部
this 关键字引用类的当前实例,还可用作扩展方法的第一个参数的修饰符。
以下是 this 的常用用途:

限定被相似的名称隐藏的成员,例如:
public Employee(string name, string alias)
{
this.name = name;
this.alias = alias;
}

将对象作为参数传递到其他方法,例如:
CalcTax(this);

声明索引器,例如:
public int this [int param]
{
get { return array[param]; }
set { array[param] = value; }
}

由于静态成员函数存在于类一级,并且不是对象的一部分,因此没有 this 指针。在静态方法中引用 this 是错误的。

示例
在本例中,this 用于限定 Employee 类成员 name 和 alias,它们都被相似的名称隐藏。this 还用于将对象传递到属于其他类的方法 CalcTax。

// keywords_this.cs
// this example
using System;
class Employee
{
private string name;
private string alias;
private decimal salary = 3000.00m;

// Constructor:
public Employee(string name, string alias)
{
// Use this to qualify the fields, name and alias:
this.name = name;
this.alias = alias;
}

// Printing method:
public void printEmployee()
{
Console.WriteLine("Name: {0}\nAlias: {1}", name, alias);
// Passing the object to the CalcTax method by using this:
Console.WriteLine("Taxes: {0:C}", Tax.CalcTax(this));
}

public decimal Salary
{
get { return salary; }
}
}
class Tax
{
public static decimal CalcTax(Employee E)
{
return 0.08m * E.Salary;
}
}

class MainClass
{
static void Main()
{
// Create objects:
Employee E1 = new Employee("Mingda Pan", "mpan");

// Display results:
E1.printEmployee();
}
}

输出
Name: Mingda Pan
Alias: mpan
Taxes: $240.00
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jeffrey_1989
2011-11-19
知道答主
回答量:23
采纳率:0%
帮助的人:16.2万
展开全部
this有两种意义
一种是指当前对象,一般可省略,但当当前对象的某个属性和当前的局部变量的某个标识符名称相同,在使用对象的属性时就需要用 this.属性名 来取到该属性
另一种是指构造方法,在编写构造方法时调用另一个构造方法
写法如下:
class A{
string a;
string b;
public A(string a){
this.a=a;//这边this指代当前对象,属性a和参数a名字相同,所以用this来取属性a
}
public A(string a,string b):this(a){//这边在编写两个参数的构造方法时调用了一个参数的构造方法
this.b=b;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式