Single-element parethesized expressions/tuples vs common use of parentheses

喜欢而已 提交于 2019-12-02 00:06:22

From Types in the Swift book:

If there is only one element inside the parentheses, the type is simply the type of that element. For example, the type of (Int) is Int, not (Int).

So the type of (2) or (2+4) is simply Int, and the * in (2+4)*5 is just integer multiplication.

+, * etc are infix operators, and they have a semantic meaning that's different from the comma ,, so the compiler treats it in a different way.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!