发布于 2015-03-28 01:18:41 | 149 次阅读 | 评论: 0 | 来源: 网友投递
Dart 结构化编程语言
Dart是一种基于类的可选类型化编程语言,设计用于创建Web应用程序。 Google称,Dart的设计目标是为Web编程创造结构化但又富有灵活性的语言;编程方法一目了然,符合程序员的自然习惯,易于学习;能在所有浏览器 和不同环境中实现高性能。
Dart 1.9 发布,异步编程无处不在 —— 用户交互,网络访问,文件 I/O。Dart 简化和增强了这些功能。
Dart 1.9 引入了 async
方法和 await
表达式,都是基于现有的 Future
API。Dart 1.9 可以使用:for/while
循环,if
块和 try/catch
来管理复杂的异步交互。
Dart 1.9 同时引入了生成器方法 – sync*
和 async*
。
其他改进如下:
enum, a long-requested feature, is now fully supported.
The Dart Analyzer has moved to the Dart Analysis Server. This makes it much easier to integrate Dart source analysis into IDE’s beyond the Dart Editor (for instance, IntelliJ and Sublime).
We've updated the regular expression engine for the Dart VM. It's up to 150x faster than the previous implementation.
The Isolate API has now been fully implemented in the Dart VM, making it much easier to create applications that target multiple CPUs.
更多内容请看这里。