美文网首页Dart
Dart-Functions(函数)

Dart-Functions(函数)

作者: Air_w | 来源:发表于2019-06-11 17:36 被阅读0次

Dart-Functions(函数)

/*
Dart 是一种真正的面向对象语言,因此即使是函数也是对象并且具有类型Function
这意味着函数可以分配给变量或作为参数传递给其他函数,您也可以调用Dart类的实例
*/

目录:
1、define function(定义函数)
2、ignore return type(省略返回类型的定义)
3、dynamic return type(动态返回类型的定义)
4、optional parameter(函数的可选参数)
5、Required parameters(必选参数)
6、anonymousFunction(匿名函数)
7、nestFunction(嵌套函数)
8、Function type(函数也是一种具有Function类型的对象)

1、define function(定义函数)


/*
Define function.
 */
bool isBool(int a, int b) {
  return a == b;
}

对于只包含一个表达式的函数,可以使用简写语法:


bool isNobel(int a, int b) => a == b;

2、ignore return type(省略返回类型的定义)


/*
ignore the define of return type:bool
 */
isBoolTwo(int a, int b) {
  return a == b;
}

3、dynamic return type(动态返回类型的定义)

/*
this function's return type is dynamic,
is int
is bool
is String
 */
isBoolThree(int a, int b) {
  if (a < b) {
    return a;
  } else if (a == b) {
    return true;
  } else if (a > b) {
    return "min:${b}";
  }
}

4、optional parameter(可选参数的函数)

/*
Optional parameters
可选函数、命名函数
 */
isBoolFour({int a, int b}) {
  if (a < b) {
    return a;
  } else if (a == b) {
    return true;
  } else if (a > b) {
    return "min:${b}";
  }
}


  //调用可选/命名参数时,传递的参数的
  print("optional parameters:${isBoolFour(b: 1, a: 2)}");

一组函数参数
[]


dynamic functionArray(String name, [String arguments]) {
  return arguments?.length;
}


5、Required parameters(必选参数)

@required


/*
Required parameters
 */
isBoolFive({int a = 0, @required int b}) {
  if (a == null) {
    return b;
  } else {
    return a + b;
  }
}


  //调用带有必须参数的,命名函数
  print("required parameters:${isBoolFive(b: 5)}");

6、anonymousFunction(匿名函数)

/*
Define anonymous function
 */
anonymousFunction() {
  print("");
  print("Anonymous function.");
  var list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];

  list.forEach((item) {
    print("item:${item}");
  });
}

7、nestFunction(嵌套函数)


bool topLevel = true;

void nestTopLevelFunction() {
  var insideMain = true;

  void myFunction() {
    var insideFunction = true;

    void nestedFunction() {
      var insideNestedFunction = true;

      print(topLevel);
      print(insideMain);
      print(insideFunction);
      print(insideNestedFunction);
    }

    nestedFunction();
  }

  myFunction();
}

8、Function type(函数也是一种具有Function类型的对象)


void functionType(num a) {
  num a;
  int b;
  double c;
  String d;
  bool e;
  Function f;

}

未完待续。。。

相关文章

  • Dart-Functions(函数)

    Dart-Functions(函数) 目录:1、define function(定义函数)2、ignore ret...

  • Excel(三)

    AND函数 OR函数 NOT函数 IF函数 频率分析函数FREQUENCY

  • if、else if、for、while、repeat函数

    ①if函数 ②else if函数 ③for函数 ④while函数 ⑤repeat函数

  • strsplit、mapply、paste、match函数

    strsplit函数 mapply函数 strsplit函数 mapply函数 paste函数 match函数 第...

  • Oracle中常用函数(SQL)

    Oracle函授有以下几个分类:数字函数、字符函数、日期函数、转换函数、集合函数、分析函数 数字函数: 字符函数:...

  • MySQL函数

    字符函数 数字运算函数 比较运算符和函数 日期时间函数 信息函数 聚合函数 加密函数 流程函数

  • BI-SQL丨AND & OR & IN

    AND函数 & OR函数 & IN函数 AND函数、OR函数和IN函数都可以理解是WHERE函数的补充,当然也可以...

  • Python之函数

    课程大纲 函数定义 函数的参数 函数的返回值 高阶函数 函数作用域 递归函数 匿名函数 内置函数 函数式编程 将函...

  • 函数基本知识

    函数 函数的定义: def 函数名() 函数的调用:函数名() #不能将函数调用放在函数定义上方 函数的文档注...

  • 积分表——不定期更新

    基本初等函数包括: 常函数: 幂函数 指数函数 对数函数 三角函数 反三角函数 I、反函数Ⅱ、复合函数:初等函数(...

网友评论

    本文标题:Dart-Functions(函数)

    本文链接:https://www.haomeiwen.com/subject/iobzxctx.html