dart:core
库中bool.hasEnvironment
的用法介绍如下。
用法:
const
bool.hasEnvironment(
String name
)
是否有环境声明 name
。
如果存在名为 name
的环境声明,则返回 true 如果存在,则可以使用 const String.fromEnvironment(name)
访问该声明的值。否则,String.fromEnvironment(name, defaultValue: someString)
将评估为给定的 defaultValue
。
此构造函数可用于专门处理不存在的声明,其方式无法通过向 C.fromEnvironment
构造函数提供默认值来表示,其中 C
是 String 、 int 或 bool 之一。
例子:
const loggingIsDeclared = bool.hasEnvironment("logging");
const String? logger = loggingIsDeclared
? String.fromEnvironment("logging")
: null;
与 name
关联的字符串值或缺少值必须在单个程序中对 String.fromEnvironment 、 int.fromEnvironment 、 bool.fromEnvironment 和 bool.hasEnvironment
的所有调用中保持一致。
此构造函数仅在作为 const
调用时才能保证工作。它可能在某些可以在运行时访问编译器选项的平台上作为非常量调用工作,但大多数 ahead-of-time 编译平台不会有此信息。
相关用法
- Dart bool.fromEnvironment用法及代码示例
- Dart MapMixin.containsKey用法及代码示例
- Dart Iterator用法及代码示例
- Dart AttributeClassSet.intersection用法及代码示例
- Dart num.sign用法及代码示例
- Dart TransformList.last用法及代码示例
- Dart FileList.first用法及代码示例
- Dart CanvasRenderingContext2D.drawImageScaledFromSource用法及代码示例
- Dart FileList.length用法及代码示例
- Dart Iterable.takeWhile用法及代码示例
- Dart LinkedHashMap用法及代码示例
- Dart RegExp.pattern用法及代码示例
- Dart StreamTransformer构造函数用法及代码示例
- Dart JsArray.removeAt用法及代码示例
- Dart ListMixin.expand用法及代码示例
- Dart UriData.parse用法及代码示例
- Dart Point用法及代码示例
- Dart Int32x4List.view用法及代码示例
- Dart Uri.decodeFull用法及代码示例
- Dart Future用法及代码示例
- Dart File用法及代码示例
- Dart ObjectStore.openCursor用法及代码示例
- Dart Process用法及代码示例
- Dart Uri.replace用法及代码示例
- Dart LengthList.first用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 bool.hasEnvironment constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。