Я написал этот тестовый код
public class ConstructorTestApplication {
private static String result;
public static void main(String[] args) {
ConstructorTest test1 = new ConstructorTest(0);
System.out.println(result);
}
private static class ConstructorTest {
public ConstructorTest(double param){
result = "double constructor called!";
}
public ConstructorTest(float param) {
result = "float constructor called!";
}
}
}
Результат был
float constructor called!
Почему был создан конструктор float вместо двойного конструктора? Является ли эта часть динамического поиска методов?