JavaScript2Java Bridge picks a random method when ambiguous call happens on JavaScript side.
I've experimented with the following class:
public class MyClass {
public int do(float a) {
return 1;
}
public int do(double a) {
return 2;
}
}
When calling myClassObject.do(1.0) from JavaScript, a random "do" method is picked.
This means that either "1.0" value is cast randomly to float or double, or a method is picked totally random disregarding parameter type.
I've experimented with the following class:
public class MyClass {
public int do(float a) {
return 1;
}
public int do(double a) {
return 2;
}
}
When calling myClassObject.do(1.0) from JavaScript, a random "do" method is picked.
This means that either "1.0" value is cast randomly to float or double, or a method is picked totally random disregarding parameter type.
- duplicates
-
JDK-8119863 JavaScript2Java Bridge cannot resolve overloaded methods properly
-
- Closed
-