guys!
How is the operator + implemented and works in Java internally in case when we add integer with Integer object?
package ru.systemres.ru;
public class Main {
public static void main(String[] args) {
Integer iOb = new Integer(10);
int a = iOb + 5;
System.out.println(a);
}
}
Is it overloaded? Can you show me some source code from jvm which works with it? Thanks!