每一门语言中都有很多小问题,同学们平时都注意不到,我在做题的时候也会犯同样的错误,今天写出来帮大家提个醒,以下是我在写代码的时候遇到的问题,写的不对的地方还望您能提出来,大家可以互相讨论:
public abstract class
Two
{
int i=1;
public void next()
{
System.out.println("i="+i);
}
}
class Another extends Two
{
public int i=2;
public void next()
{
super.next();
}
public static void main(String [] args){
System.out.println("结果是:");
Another a=new Another();
a.next();
}
}
class Another extends Two
{
}