1. 程式人生 > >5.Control flow statements-流程控制(Dart中文文件)

5.Control flow statements-流程控制(Dart中文文件)

你可以使用如下流程控制符:

  • if and else
  • for loops
  • while and do-while loops
  • break and continue
  • switch and case
  • assert
    同時,你可以用try-catch 和throw去跳出流程控制邏輯,並在異常程式碼塊中進行處理。

If and else

下面是if和else配合使用的示例:

if (isRaining()) {
  you.bringRainCoat();
} else if (isSnowing()) {
  you.wearJacket();
} else {
  car.putTopDown();
}

有點要注意,Dart語言不像JavaScript,if判斷必須是Boolean型別物件,不能將null看作false

For loops

for迴圈示例:

var message = StringBuffer('Dart is fun');
for (var i = 0; i < 5; i++) {
  message.write('!');
}

在for迴圈中區域性變數再閉包函式中使用,變數值將會是當時的快照值,後續i變動,也不會改變。這個和JavaScript不同。

var callbacks = [];
for (var i = 0; i < 2; i++) {
  callbacks.add(() => print(i));
}
callbacks.forEach((c) => c());

上面的程式碼,將先輸出0,再輸出1。而在JavaScript中,都是輸出2,這就是兩個之間的一個差異

對一個數組物件迴圈時,如果你不需要知道迴圈的計數器,可以用forEach寫法。

candidates.forEach((candidate) => candidate.interview());

陣列或者集合也可以用for-in的寫法做迴圈。

var collection = [0, 1, 2];
for (var x in collection) {
  print(x); // 0 1 2
}

While and do-while

while是前置判斷的迴圈寫法:

while (!isDone()) {
  doSomething();
}

do-while 是後置判斷的迴圈寫法:

do {
  printLine();
} while (!atEndOfPage());

Break and continue

你可以用break終止迴圈:

while (true) {
  if (shutDownRequested()) break;
  processIncomingRequests();
}

可以用continue 跳過迴圈中的一次操作:

for (int i = 0; i < candidates.length; i++) {
  var candidate = candidates[i];
  if (candidate.yearsExperience < 5) {
    continue;
  }
  candidate.interview();
}

如果你是對陣列或者集合操作,可以用如下寫法:

candidates
    .where((c) => c.yearsExperience >= 5)
    .forEach((c) => c.interview());

Switch and case

switch可以用數值,字串,編譯常量作為判斷值,case後面的物件必須在類中初始化,不能在父類中,通過該物件的類不能過載==。另外,列舉型別也可以作為判斷條件。

非空的case,必須使用break,coutinue,throw,return 結束,否則將編譯錯誤。

var command = 'OPEN';
switch (command) {
  case 'CLOSED':
    executeClosed();
    break;
  case 'PENDING':
    executePending();
    break;
  case 'APPROVED':
    executeApproved();
    break;
  case 'DENIED':
    executeDenied();
    break;
  case 'OPEN':
    executeOpen();
    break;
  default:
    executeUnknown();
}

Dart的非空case必須break,除非你採用coutinue進行跳轉。

var command = 'OPEN';
switch (command) {
  case 'OPEN':
    executeOpen();
    // ERROR: Missing break

  case 'CLOSED':
    executeClosed();
    break;
}

Dart支援空的case,處理邏輯和其後續case相同。

var command = 'CLOSED';
switch (command) {
  case 'CLOSED': // Empty case falls through.
  case 'NOW_CLOSED':
    // Runs for both CLOSED and NOW_CLOSED.
    executeNowClosed();
    break;
}

如果在非空的case中,你希望switch繼續向下判斷,可以用continue +label來實現。

var command = 'CLOSED';
switch (command) {
  case 'CLOSED':
    executeClosed();
    continue nowClosed;
  // Continues executing at the nowClosed label.

  nowClosed:
  case 'NOW_CLOSED':
    // Runs for both CLOSED and NOW_CLOSED.
    executeNowClosed();
    break;
}

case的程式碼塊中的定義的都是區域性變數,只能在其中可見。

Assert

使用assert用來在false條件下,丟擲異常來中斷程式執行。

// Make sure the variable has a non-null value.
assert(text != null);

// Make sure the value is less than 100.
assert(number < 100);

// Make sure this is an https URL.
assert(urlString.startsWith('https'));

注意:assert在生產模式將被忽略。Flutter可以通過debug模式啟用assert,IDE上面,只有dartdevc預設支援dart,其它工具,比如dart,dart2js,需要用--enable-asserts來開啟assert

assert的帶2個引數寫法:

assert(urlString.startsWith('https'),
    'URL ($urlString) should start with "https".');

第六篇準備翻譯 Exceptions 異常