各位大侠 高手 请教一个连环问题!!!!!!!!
1. 编写一个Sa,当输入“Good”,屏幕显示为“好”,当输入为“Bad”时,屏幕显示为“坏”。
2. 将上题改写为通过构造函数实现,在类Sb中调用Sa,在屏幕上显示上题结果。
3. 若第二题中,Sa类在包mypackage.jifa包中,而类sb不在此包中,则程序应做怎样修改。
不好意思啊 是请教一下!
[此贴子已经被作者于2004-09-03 16:18:00编辑过]
我也是初学者
这个问题要想想
1.public class Sa{ public static void main(String s[]){ String str="good"; String str1="bed"; if(s[0].equals(str)) System.out.println("好"); else if(s[0].equals(str1)) System.out.println("坏");
2**************
public class Sa{ static String strobj; static final String str="good"; static final String str1="bed"; Sa(String s){ strobj=s; } public static void main(String s[]){ Sa one=new Sa(s[0]); if(one.strobj.equals(str)) System.out.println("好"); else if(one.strobj.equals(str1)) System.out.println("坏"); } }
我也是个才鸟,大家学习学习,我有个问题,我的电脑正常关机,但下次开机他老是自检哟,为什么呀????????????????? }}