请问大家std::string可不可已和int或double相加.
如:
string s = "ACBD";
string temp = 1000 + s; (想要的结果为1000ABCD)
string temp = 1000.00 + s; (想要的结果也为1000ABCD)