Making the second string equal to the first one by changing it

Suppose we initialize String str1=“Hello”; and String str2=“H”;.
Now if we execute the statement {str2=str2+“ello”;}, then will both str1 and str2 have same address?