大菜鸟又问问题了
class foreign{
int year;
int moon;
int day;
foreign()
{
year=2000;
moon=1;
day=1;
}
foreign(int newyear)
{
year=newyear;
}
foreign(int nnewyear,int newmoon,int newday)
{
year=nnewyear;
newmoon=moon;
newday=day;
}
void shuchu()
{
System.out.println("这是父类的输出");
System.out.println("今天的日期为:"+year+moon+day);
}
}
class chinese extends foreign
{
String nyear;
String nmoon;
String nday;
chinese(int hu,int he,int ho)
{
super(hu,he,ho);
}
chinese(String newyeer,String newmonn,String newndaay)
{
nyear=newyeer;
nmoon=newmonn;
nday=newndaay;
}
void shuchu()
{
System.out.println("这是子类的输出");
System.out.println("今天的公历是"+year+moon+day);
System.out.println("今天的农历是"+nyear+nmoon+nday);
}
}
class zong
{
public static void main(String []aaa)
{
try
{
foreign a1=new foreign(2006,11,20);
a1.shuchu();
}
catch(Exception e)
{
System.err.println("请你输入日期的数字,不要输入英文或汉字,你个傻小子");
}
try
{
foreign b1=new chinese("二零零六","十一月","二十号");
b1.shuchu();
}
catch(Exception a)
{
System.err.println("请你输入农历的中文,不要输入数字或英文,你个村人");
}
System.out.println("欢迎使用,谢谢");
}
}
这个程序编译没有错误,但我在子类中的super调用,怎么在后边的对象中对他赋值,如不对他赋值,则他把父类中的默认方法调出了。
另外问一下,为什么父类的shuchu()方法,只把year赋值为2006了,而moon和day均显示0。怎么改就对了?
这是父类的输出
今天的日期为:200600
这是子类的输出
今天的公历是200011
今天的农历是二零零六十一月二十号
欢迎使用,谢谢
Press any key to continue...