Dart 語言的7個很酷的特點

會煮咖啡的貓發表於2022-05-08

原文

https://betterprogramming.pub...

參考

正文

今天的文章簡短地揭示了 Dart 語言所提供的很酷的特性。更多時候,這些選項對於簡單的應用程式是不必要的,但是當你想要通過簡單、清晰和簡潔來改進你的程式碼時,這些選項是一個救命稻草。

考慮到這一點,我們走吧。

Cascade 級聯

Cascades (.., ?..) 允許你對同一個物件進行一系列操作。這通常節省了建立臨時變數的步驟,並允許您編寫更多流暢的程式碼。

var paint = Paint();
paint.color = Colors.black;
paint.strokeCap = StrokeCap.round;
paint.strokeWidth = 5.0;

//above block of code when optimized
var paint = Paint()
  ..color = Colors.black
  ..strokeCap = StrokeCap.round
  ..strokeWidth = 5.0;

Abstract 抽象類

使用 abstract 修飾符定義一個 _abstract 抽象類(無法例項化的類)。抽象類對於定義介面非常有用,通常帶有一些實現。

// This class is declared abstract and thus
// can't be instantiated.
abstract class AbstractContainer {
  // Define constructors, fields, methods...

  void updateChildren(); // Abstract method.
}

Factory constructors 工廠建造者

在實現不總是建立類的新例項的建構函式時使用 factory 關鍵字。

class Logger {
  String name;
  Logger(this.name);
  factory Logger.fromJson(Map<String, Object> json) {
    return Logger(json['name'].toString());
  }
}

Named 命名建構函式

使用命名建構函式為一個類實現多個建構函式或者提供額外的清晰度:

class Points {
  final double x;
  final double y;

  //unnamed constructor
  Points(this.x, this.y);

  // Named constructor
  Points.origin(double x,double y)
      : x = x,
        y = y;

  // Named constructor
  Points.destination(double x,double y)
      : x = x,
        y = y;
}

Mixins 混合物

Mixin 是在多個類層次結構中重用類程式碼的一種方法。

要實現 implement mixin,建立一個宣告沒有建構函式的類。除非您希望 mixin 可以作為常規類使用,否則請使用 mixin 關鍵字而不是類。

若要使用 mixin,請使用後跟一個或多個 mixin 名稱的 with 關鍵字。

若要限制可以使用 mixin 的型別,請使用 on 關鍵字指定所需的超類。

class Musician {}

//creating a mixin
mixin Feedback {
  void boo() {
    print('boooing');
  }

  void clap() {
    print('clapping');
  }
}

//only classes that extend or implement the Musician class
//can use the mixin Song
mixin Song on Musician {
  void play() {
    print('-------playing------');
  }

  void stop() {
    print('....stopping.....');
  }
}

//To use a mixin, use the with keyword followed by one or more mixin names
class PerformSong extends Musician with Feedback, Song {
  //Because PerformSong extends Musician,
  //PerformSong can mix in Song
  void awesomeSong() {
    play();
    clap();
  }

  void badSong() {
    play();
    boo();
  }
}

void main() {
  PerformSong().awesomeSong();
  PerformSong().stop();
  PerformSong().badSong();
}

Typedefs

型別別名ー是指代型別的一種簡明方式。通常用於建立在專案中經常使用的自定義型別。

typedef IntList = List<int>;
List<int> i1=[1,2,3]; // normal way.
IntList i2 = [1, 2, 3]; // Same thing but shorter and clearer.

//type alias can have type parameters
typedef ListMapper<X> = Map<X, List<X>>;
Map<String, List<String>> m1 = {}; // normal way.
ListMapper<String> m2 = {}; // Same thing but shorter and clearer.

Extension 擴充套件方法

在 Dart 2.7 中引入的擴充套件方法是一種向現有庫和程式碼中新增功能的方法。

//extension to convert a string to a number
extension NumberParsing on String {
  int customParseInt() {
    return int.parse(this);
  }

  double customParseDouble() {
    return double.parse(this);
  }
}

void main() {
  //various ways to use the extension

  var d = '21'.customParseDouble();
  print(d);

  var i = NumberParsing('20').customParseInt();
  print(i);
}

可選的位置引數

通過將位置引數包裝在方括號中,可以使位置引數成為可選引數。可選的位置引數在函式的引數列表中總是最後一個。除非您提供另一個預設值,否則它們的預設值為 null。

String joinWithCommas(int a, [int? b, int? c, int? d, int e = 100]) {
  var total = '$a';
  if (b != null) total = '$total,$b';
  if (c != null) total = '$total,$c';
  if (d != null) total = '$total,$d';
  total = '$total,$e';
  return total;
}

void main() {
  var result = joinWithCommas(1, 2);
  print(result);
}

unawaited_futures

當您想要啟動一個 Future 時,建議的方法是使用 unawaited

否則你不加 async 就不會執行了

import 'dart:async';

Future doSomething() {
  return Future.delayed(Duration(seconds: 5));
}

void main() async {
  //the function is fired and awaited till completion
  await doSomething();

  // Explicitly-ignored
  //The function is fired and forgotten
  unawaited(doSomething());
}

end.


© 貓哥

相關文章