30
“做错了”的成语
做错事 今天在工作中,我的一位同事正在描述do while(false)的用例。他正在与之交谈的人认为这很愚蠢,而且如果陈述会更好,那就简单了。然后,我们浪费了一半的时间来讨论编写等同于以下内容的最佳方式: do { //some code that should always execute... if ( condition ) { //do some stuff break; } //some code that should execute if condition is not true if ( condition2 ) { //do some more stuff break; } //further code that should not execute if condition …
47
code-golf