if{}
和if;
有什么区别?
例如
if(condition){
//do something
}
vs。
if(condition);
//do something
以及具有classname{}
和classname{};
的类?
例如
classname{
//do something
}
VS
classname {
//do something
};
答案 0 :(得分:0)
if {}和if;和
有什么区别?
使用
if(condition){
//TODO:
}
将在 {} 内执行多行,并使用
if(condition)
//TODO
将执行立即行。您甚至可以用其他形式找到它
if(condition)//TODO
答案
以及具有classname {}和classname {}的类;
Why is the semicolon not required but allowed at the end of a class definition?