Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你如何构建你的 if 语句,你认为两者中哪一个更容易阅读?如:
if(condition){ //... }
相比
if(condition) { //... }
我使用第一种方法。它更易于阅读,在某些情况下,您可以省略 {}(如果 if 语句后面有一行)。
Visual Studio 可以设置为自动执行此操作,我确信其他平台也可以设置为格式化代码。