标签: c if-statement optimization boolean embedded
if (flag) {...}
或
if (flag!=0) {...}
考虑编译器执行时间或所需资源。
答案 0 :(得分:0)
不,如果flag是整数类型,则没有实际区别。