当前位置:  开发笔记 > 编程语言 > 正文

Dart编程语言中的Function和Method有什么区别?

如何解决《Dart编程语言中的Function和Method有什么区别?》经验,为你挑选了1个好方法。

我是Dart和Flutter的新手,我想知道我的实际区别是什么以及何时使用哪一个。



1> Günter Zöchb..:

函数是在类之外声明的顶级函数,或者是在另一个函数或方法内部创建的内联函数。

方法绑定到类的实例,并隐式引用this

主镖

// function
void foo() => print('foo'); 

// function
String bar() { 
  return 'bar';
}

void fooBar() {
  int add(int a, int b) => a + b; // inline function

  int value = 0;
  for(var i = 0; i < 9; i++) {
    value = add(value, i); // call of inline function
    print(value);
  }
}

class SomeClass {
  static void foo() => print('foo'); // function in class context sometimes called static method but actually not a method

  SomeClass(this.firstName);

  String firstName;

  // a real method with implicit access to `this`
  String bar() {
    print('${this.firstName} bar');
    print('$firstName bar'); // this can and should be omitted in Dart 

    void doSomething() => print('doSomething'); // inline function declared in a method

    doSomething(); // call of inline function  
  }
}

像内联函数一样,您也可以创建未命名的内联函数,也称为闭包。它们经常用作回调,例如

button.onClick.listen( /* function start */ (event) {
  print(event.name);
  handleClick();
} /* function end */);

推荐阅读
乐韵答题
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有