java 板


LINE

※ 引述《[email protected] (不可以)》之铭言: : 我照着书上的范例打的程式: : public class Animal : { : private int legs; : public Animal() : { : setLegs(4); : } : public Animal(int l) : { : setLegs(l); : } : public void eat() : { : System.out.println("Eating..."); : } : public void move() : { : System.out.println("Moving..."); : } : public void setLegs(int l) : { : if(l!=0 && l!=2 && l!=4) : { : System.out.println("Wrong number of legs!"); : return; : } : legs=l; : } : public int getLegs() : { : return legs; : } : } 跑一次流程就知道了 : public class Zoo : { : public static void main(String argv[]) : { : Animal animal1=new Animal(); 执行Animal() => i==4 故不符合(i!=0&&i!=2&&i!=4)的叙述 => animal.legs=4 : Animal animal2=new Animal(); 执行Animal() => setLegs(4) => i==4 故不符合(i!=0&&i!=2&&i!=4)的叙述 => anima2.legs=4 : Animal animal3=new Animal(10); 执行Animal(int k) => setLegs(k) => i==10 故符合(i!=0&&i!=2&&i!=4)的叙述 => print error! => animal3.legs 没有被给值 所以是0 : animal1.setLegs(3); => i==3 故符合 叙述 => print error! => animal1.legs维持原样 (4) : animal2.setLegs(2); => i==2 故不符合 叙述 => animal2.legs=2 : System.out.println("animal1 has "+animal1.getLegs()+"legs."); 4 : System.out.println("animal2 has "+animal2.getLegs()+"legs."); 2 : System.out.println("animal3 has "+animal3.getLegs()+"legs."); 0 : } : } : 执行结果是 : Wrong number of legs! : Wrong number of legs! : animal1 has 4 legs. : animal1 has 2 legs. ^ : animal1 has 0 legs. ^ 这是不是打错字?? 怎麽都是1 跟你上面的System.out.println就不一样了-.- : 跟书上的结果一样,但是书上却说只有animal2的legs数有设定成功,所以显示是2 : 其余animal1和animal3的legs都是0 : 跟run出来的结果为什麽不一样呢? : 请各位大大解答一下,谢谢! 流程会说话‧ :) -- String temp="relax"; | Life just like programing while(buringlife) String.forgot(temp); | to be right or wrong while(sleeping) brain.setMemoryOut(); | need not to say stack.push(life.running); | the complier will stack.push(scouting.buck()); | answer your life stack.push(bowling.pratice()); | Bone everything --



※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.138.240.58







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:Soft_Job站内搜寻

TOP