你可以使用如下流程式控制制符: if and else for loops while and do while loops break and continue switch and case assert 同時,你可以用try catch 和throw去跳出流程式控制制邏輯,併在異常代碼塊中進行處理。 ...
你可以使用如下流程式控制制符:
- 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 異常