转载

Dart 1.12 RC0 发布,新增 null-aware 操作符

Dart 1.12 RC0 发布,此版本新增了大量 null-aware 操作符语言特想,改进了 pub,Observatory,dartdoc ,dartfmt 等功能。详细改进请看 发行说明 。

null-aware 操作符语言特性:

`??`: if null operator. `expr1 ?? expr2` evaluates to `expr1` if not `null`, otherwise `expr2`.

`??=`: null-aware assignment. `v ??= expr` causes `v` to be assigned `expr` only if `v` is `null`.

`x?.p`: null-aware access. `x?.p` evaluates to `x.p` if `x` is not `null`, otherwise evaluates to `null`.

`x?.m()`: null-aware method invocation. `x?.m()` invokes `m` only if `x` is not `null`.

下载: https://www.dartlang.org/downloads/archive/

Dart是一种基于类的可选类型化编程语言,设计用于创建Web应用程序。 Google称,Dart的设计目标是为Web编程创造结构化但又富有灵活性的语言;编程方法一目了然,符合程序员的自然习惯,易于学习;能在所有浏览器 和不同环境中实现高性能。

Dart 1.12 RC0 发布,新增 null-aware 操作符

Dart 代码以两种方式执行,一种是原生虚拟机,一种是JavaScript引擎,用编译器将Dart代码翻译成 JavaScript代码。这允许程序员在Dart中创建Web应用,编译后在任何浏览器上运行。Dart语言官网提供了名叫Dartboard的在线应 用,让感兴趣的开发者在线上编程和运行。

正文到此结束
Loading...