最佳答案
当满足给定条件时,我无法找到一种推荐的方法来部分停止函数。我应该使用像 exit
或 break
这样的东西吗?
我现在使用的是:
if ( x >= 10 ) { return; }
// other conditions;