gpt4 book ai didi

c - else if 和 else {if} 的区别

转载 作者:行者123 更新时间:2023-12-04 08:20:51 24 4
gpt4 key购买 nike

代码 A:

if () 
...
else {
if (cond == 1)
/* do something */
}
代码 B:
if ()
...
else if (cond == 1)
/* do something */
代码A和代码B之间是否存在差异?

最佳答案

只有一个潜在的差异,通过稍微扩展的示例代码变得可见
(请原谅故意误导的缩进,这正是您在这种情况下需要牢记的问题):

if () 
...
else {
if (cond == 1)
do_something(); /* executed on !1st and 2nd condition */
do_somthing_else(); /* executed on !1st but unaffecated by 2nd condition */
}
if ()
...
else if (cond == 1)
do_something(); /* executed on !1st and 2nd condition */
do_something_else(); /* ALWAYS executed */

关于c - else if 和 else {if} 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65504255/

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