Stupid question, but still.
There is such code:
int i = 10; String s = "privet " + i; System.out.println(s); // привет 10 i = 20; System.out.println(s)// опять "привет 10", хотя переменная i изменилась
Is it possible to somehow update what is in the variable s without assigning a value to it again?