gpt4 book ai didi

c# - C# 是否支持不带大括号的代码块?

转载 作者:可可西里 更新时间:2023-11-01 07:49:02 26 4
gpt4 key购买 nike

C# 将如何编译它?

if (info == 8)
info = 4;
otherStuff();

它会在代码块中包含后续行吗?

if (info == 8)
{
info = 4;
otherStuff();
}

还是只需要下一行?

if (info == 8)
{
info = 4;
}
otherStuff();

最佳答案

是的,它支持它 - 但它需要下一个语句,而不是下一个。例如:

int a = 0;
int b = 0;
if (someCondition) a = 1; b = 1;
int c = 2;

相当于:

int a = 0;
int b = 0;
if (someCondition)
{
a = 1;
}
b = 1;
int c = 2;

就我个人而言,我总是在 if 语句的主体周围包含大括号,而且我遇到的大多数编码约定都采用相同的方法。

关于c# - C# 是否支持不带大括号的代码块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4345867/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com