码迷,mamicode.com
首页 > 其他好文 > 详细

6 this的使用方法

时间:2016-09-03 16:44:20      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

class Person

{

  String name;

  void talk()

  {

    System.out.println("my name is "+this.name);

  }

}

 

 

class Person

{

  String name;

  int age;

  String address;

  

    Person()

  {

    System.out.println("无参的构造函数");

  }

      Person(String name,int age,String address)

  {

    this.name=name;

    this.age=age;

    this.address=address;

    System.out.println("有参的构造函数");

  }

  void talk()

  {

    System.out.println("my name is "+this.name);

  }

}

 

6 this的使用方法

标签:

原文地址:http://www.cnblogs.com/ansen312/p/5837285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!