C# 数字、字符串混合相加的结果

int a = 1;
int b = 2;
Response.Write(a + b + "-");

如上,结果是:3-,还是:12- 呢?

答案:3-

也就是说:在没有遇到字符串之前,+ 都按数学中的加号对待。

你可能感兴趣的