Clarify what happens in each of the situations below. ``` MyString s1("hello"); MyString s2(s1); MyString s3 = s1; MyString s4; s4 = s1; ```