plz explain me this cuz chatgpt became extremly dumb even on premium
NOT AMBIGUOUS AND SHOW PRIMITIVE
Code: Select all
m(10, (short) 50);
}
static void m(int i, short s){
System.out.println("primitive");
}
static void m(Integer i, Short s){
System.out.println("Wrapper");
}
AMBIGUOUS ERROR
Code: Select all
m(10, (short) 50);
}
static void m(int i, Short s){ //only changed short to Short
System.out.println("primitive");
}
static void m(Integer i, Short s){
System.out.println("Wrapper");
}