码迷,mamicode.com
首页 > 编程语言 > 详细

java中关于构造器内部调用构造器浅谈

时间:2020-05-10 14:47:01      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:his   play   区别   print   stat   div   lap   pre   年龄   

  可能为一个类写了多个构造器,有时可能想在一个构造器里面调用另外一个构造器,为了减少代码的重复,可用this关键字做到这一点。 

技术图片
 1 public class Flower {
 2     private String string;
 3     private int age;
 4 
 5     public Flower() {
 6         // 先调用public Flower(String string, int age)
 7         this("leon", 120);
 8         // 先调用public Flower(String string, int age)
 9     }
10     public Flower(String string) {
11         this(string, 12);
12     }
13 
14     public Flower(String string, int age) {
15         this.string = string;
16         this.age = age;
17         System.out.println("姓名:" + this.string + " 年龄: " + this.age);
18     }
19 
20     public static void main(String[] args) {
21         Flower flower = new Flower();
22         Flower flower1 = new Flower("leon");
23         Flower flower2 = new Flower("leon", 12);
24     }
25 }
View Code

技术图片

 

其实可以从结果看见,这其实可普通的函数调用没什么区别,只不过是用了this这个关键字。

java中关于构造器内部调用构造器浅谈

标签:his   play   区别   print   stat   div   lap   pre   年龄   

原文地址:https://www.cnblogs.com/xpeanut/p/12863070.html

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