| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2082 人关注过本帖
标题:java的一个小问题,高手过来指点......
取消只看楼主 加入收藏
新人学习
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:145
专家分:187
注 册:2017-10-26
结帖率:66.67%
收藏
已结贴  问题点数:2 回复次数:0 
java的一个小问题,高手过来指点......
//Calling constructors with "this"               用“this”调用构造函数

public class Flower
{
    int petalCount = 0;
    String s = "initial value";
    Flower(int prtals)
    {
        petalCount = prtals;
        System.out.println("Constructor w/ String arg only, prtalcount = " + petalCount);
    }
   
    Flower(String ss)
    {
        System.out.println("Constructor w/ String arg only, s = " + ss);
        s = ss;
    }
   
    Flower(String s, int petals)
    {
        this(petals);                    //这个语句什么意思?是怎么执行的?
        //!  this(s);  //Can't call two!      //不能叫两个!
        this.s = s;  //Another use of "this"         // “this”的另一个用法
        System.out.println("String & int args");          //字符串和字符串
    }
   
    Flower()
    {
        this("hi", 47);
        System.out.println("default constructor (no args)");               //缺省构造函数(无ARG)
    }
   
    void printPetalCount()
    {
        //! this(11);     //Not inside non - constructor!           不在非构造函数之内!
        System.out.println("petalCount = " + petalCount + " s = " + s);
    }
   
    public static void main(String[] args)
    {
        Flower x = new Flower();
        x.printPetalCount();
    }
}
搜索更多相关主题的帖子: this String System out println 
2018-10-03 10:23
快速回复:java的一个小问题,高手过来指点......
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016128 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved