Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 217 Bytes

go-faq-flow.md

File metadata and controls

9 lines (5 loc) · 217 Bytes

控制流

为啥没有三目运算符

?: 是很多语言支持的三目运算符,为啥Go没有

三目操作使用很频繁,但if-else可能会更加清晰。

Go的思想是,提供一种方法就够了