关于构造方法的问题?
public class Other extends Other2{public Other(float f){
this(100.0);
}
public Other(double f){
System.out.println(f); 红色字提示错误
}
public static void main(String args[])
{
Other oo=new Other(1000.0f);
}
}
class Other2 {
public Other2(int i){
System.out.println(i);
}
}