哪种代码更好或更优化或更有效?
$("dialogElement").on("beforeopen",function(event){
event.preventDefault();
event.stopPropagation();
});
或
double a;
double b;
if (a == b)
return true;
答案 0 :(得分:7)
File not found:
并不意味着a % b == 0
等于a
。所以编译器无法优化它。
至于其他两个,你应该使用b
,因为它更清楚,并将优化留给编译器。