一、Dart简介
Dart是一门跨平台的开发语言。借助 Flutter 和 Dart,开发人员终于有机会使用共享代码库,为 Android、iOS 和 Web
编写高质量的应用程序。
Dart可以编译成ARM和x86指令。 最重要的用途之一就是 Flutter,它是谷歌新的移动 UI 框架,为 iOS 和 Android
制作高质量的原生界面。
Dart 是经过关键性 Web 应用程序验证的平台。它拥有为 Web 量身打造的库,如dart:html,以及完整的基于 Dart 的 Web
框架。Dart在Web App上被转化成JavaScript。
Dart官网:https://www.dartlang.org <https://www.dartlang.org>
二、最简单的Dart程序
// Define a function. printInteger(int aNumber) { print('The number is
$aNumber.'); // Print to console. } // This is where the app starts executing.
main() { var number = 42; // Declare and initialize a variable.
printInteger(number); // Call a function. }
// This is a comment. 单行注释。
int 变量类型。
42 字面量。
print() 打印语句。
'...' (or "...") String字面量。
$variableName (or ${expression}) String插值。
main() app的入口函数。
var 不显示声明类型的定义变量的定义变量的方式。
三、重要概念
1.任何变量(variable)都是对象(object)。任何对象(object)都是类(class)的实例。objects 都继承自 Object。
2.Dart是一种强类型语言。但是,类型是可选的,因为Dart可以推理实际类型。如果你希望变量没有实际类型,请使用dynamic。
3.Dart支持通用类型,例如:List<int> (a list of integers) or List<dynamic> (a list of
objects of any type)。
4.Dart支持顶级函数(such as main()),也支持类函数或对象函数(static and instance methods)
。甚至可以在函数内部定义函数(nested or local functions)。
5.同样,Dart支持顶级变量,也支持类变量或对象变量(static and instance variables)。
6.Dart没有public、protected 和 private 关键字。如果一个标识符(identifier)以下划线
(_)开始,那它对它所在的库就是私有的。
7.标识符(identifier)以下划线(_)或字符开始,后面是下划线(_)、字符或数字。
8.区分表达式(expression)和声明(statement)。
9.Dart工具可以报告两种问题:warning 和 error。
Warning表示某段代码不工作,但是你的程序还是可以执行的。Error可以是编译时或运行时的。编译时的错误使程序不能运行。运行时的错误在执行的时候会抛出异常(
exception <https://www.dartlang.org/guides/language/language-tour#exceptions>)。
<https://www.dartlang.org/guides/language/language-tour#keywords>
热门工具 换一换