string s(4,'a')하면 string s = "aaaa" 랑 동일하잖음

근데 이미 위에서 string s = "bbbb" 이런식으로 선언되어있고

다시 s = "aaaa" 만들고 싶은데 어떤 방법없음??

s(4, 'a') 이렇게 하니 안되던데 ㅜ