control_flow_in_finally
避免在 finally
块中使用控制流。
此规则从 Dart 2.0 开始可用。
详情
#避免 离开 finally
块的控制流。
在 finally
块中使用控制流不可避免地会导致难以调试的意外行为。
错误
dart
class BadReturn {
double nonCompliantMethod() {
try {
return 1 / 0;
} catch (e) {
print(e);
} finally {
return 1.0; // LINT
}
}
}
错误
dart
class BadContinue {
double nonCompliantMethod() {
for (var o in [1, 2]) {
try {
print(o / 0);
} catch (e) {
print(e);
} finally {
continue; // LINT
}
}
return 1.0;
}
}
错误
dart
class BadBreak {
double nonCompliantMethod() {
for (var o in [1, 2]) {
try {
print(o / 0);
} catch (e) {
print(e);
} finally {
break; // LINT
}
}
return 1.0;
}
}
正确
dart
class Ok {
double compliantMethod() {
var i = 5;
try {
i = 1 / 0;
} catch (e) {
print(e); // OK
}
return i;
}
}
用法
#要启用 control_flow_in_finally
规则,请在 analysis_options.yaml
文件中的linter > rules下添加 control_flow_in_finally
analysis_options.yaml
yaml
linter:
rules:
- control_flow_in_finally
除非另有说明,否则本网站上的文档反映了 Dart 3.5.3。页面最后更新于 2024-07-03。 查看源代码 或 报告问题.