prefer_interpolation_to_compose_strings
使用插值来组合字符串和值。
此规则从 Dart 2.0 开始可用。
此规则有一个快速修复可用。
详情
#**优先** 使用插值来组合字符串和值。
在组合字符串和值时使用插值通常比连接更易于编写和阅读。
错误
dart
'Hello, ' + person.name + ' from ' + person.city + '.';
正确
dart
'Hello, ${person.name} from ${person.city}.'
用法
#要启用 prefer_interpolation_to_compose_strings
规则,请在你的 analysis_options.yaml
文件中的 **linter > rules** 下添加 prefer_interpolation_to_compose_strings
analysis_options.yaml
yaml
linter:
rules:
- prefer_interpolation_to_compose_strings
除非另有说明,否则本网站上的文档反映了 Dart 3.5.3。页面最后更新时间为 2024-07-03。 查看源代码 或 报告问题.