this.属性

Posted 一杯96的java

tags:

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

this是属于一个具体对象的,而不是属于一个类的。

当你创建了一个对象时,this自动的给你带过来了。

this只能在类定义的方法中使用,不能在类定义的外部使用。

 

class Person

 {

  //成员变量

  int age;

  String name;

  Dog dog;  //引用类型

  public Person(Dog dog,int age, String name) //构造方法

  {

  //可读性不好

  this.age = age ;

  this.name = name;

  this.dog = dog; 

  }

 

      //显示人名字

  public void showInfo()

  {

    System.out.println("人名是:"+name);

  }

}

 

class Dog

{

  //成员变量

  int age;

  String name;

  public Dog(int age, String name)

  {

    this.age = age ;

    this.name = name;

       }

  //显示狗名的方法

  public void showInfo()

  {

  System.out.println("狗名是:"+this.name);

  }

}

 

 

 

 

以上是关于this.属性的主要内容,如果未能解决你的问题,请参考以下文章

jQuery属性相关的操作

使用 this 关键字定义方法和属性

简写属性名称* this *

this.属性

this关键字的使用

JavaScript学习总结——this关键字