+ 2
What does mean this strange string initialization? string s("aaa" "bbb");
3 Antworten
+ 2
It pretty much just joins the two strings as one.
You could try it out in playground.
+ 1
Is it a general concatenation method?
0
I don't know why but It looks like. My guess would because arguments are separated by a comma it's effectively one string, I guess.