this关键字的相关应用

Posted unclebt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了this关键字的相关应用相关的知识,希望对你有一定的参考价值。

一、this 关键字访问属性:

public person(int age)

this.Age=age;//通过this 关键字访问属性

// 如果没有this 关键字则访问的是局部变量。

}

二、this关键字访问成员方法(普通方法)

public void test()

{

console.writeline(“This is a test method”);

this.say();使用this关键字调用say()方法。

}

public void say()

{

conso.writeline("呀,我被调用了");

}

 

以上是关于this关键字的相关应用的主要内容,如果未能解决你的问题,请参考以下文章

与关键字this相关的神秘“未定义”

this关键字简单应用

4.8 this关键字

Java入门系列this关键字

转载 深入理解JavaScript中的this关键字

面向对象this关键字和概述和应用