method1、変数 x を持つ interface1 と、method1、変数 x を持つ interface2 があります。2 行目ではなく 1 行目にエラーが表示されるのはなぜですか?
interface interface1{
public int x =10;
public void method1();
}
interface interface2{
public int x =11;
public void method1();
}
public class Test implements interface1, interface2{
int y = x; // Line 1
@Override
public void method1() { //Line 2
}
}