I have an example in which I cannot determine the number of boxing(s) and unboxing(s), which taking place in the Java code below :
int x = 5;
Integer y = x + x;
From my point of view I see one type of boxing (Integer y = x + x). Am I wrong? Is there any unboxing as well?