分类: Dart基础

4 篇文章

04. 类的使用
声明类 ( 同 JS ) class Person{    String name = "zhangsan",    void getInfo(){}}var person = new Person() 默认构造函数 形式同 JS 的 Contructor class Person{    …
03.函数方法
自定义方法 返回类型 方法名 (参数){    函数体    return 返回值} 可选参数 参数也需要规范类型 type Fun (参数1,[参数2,参数3]){    // 中括号表示可选参数,标准是放在最后} 默认参数 type fun (参数1,[参数2=3,参数…
02. List & str & Set & Map常用的API
属性 length 长度 isEmpty 判断是否为空 isNotEmpty 判断是否不为空 reversed 数组反转 var list = [1,2,3,4,5]list.length // 5;list.isEmpty //falselist.isNotEmpty // truevar newList = list.reversed(…
01. Datr基础
1. 数据类型 string 字符类型 String str = "Hello Dart"; int 整数类型 int num = 12; double 浮点类型 注意: double 类型的变量可以兼容 int 类型, 但 int 和 double 不能参与计算, 如果参与计算需要数据都声明称成 int 或者 double double num …