Dart基礎(三)

級別: ★☆☆☆☆
標籤:「Flutter 」「Dart」「Dart Operator」「Dart Exceptions」
做者: WYW
審校: QiShare團隊php


前言
筆者在以前已經寫了2篇Dart的基礎文章了。
Dart 基礎 (一) Dart 基礎 (二)html

本文是Dart基礎的第3篇,在本文中,筆者會主要介紹2部份內容,運算符和異常。git

1 Operator(運算符)主要分以下4部分

  • 1.1 算數運算符
  • 1.2 級聯運算符
  • 1.3 類型斷定運算符
  • 1.4 其餘運算符

2 異常主要分以下4部分

  • 2.0 Try
  • 2.1 Throw
  • 2.2 Catch
  • 2.3 Finally

詳情以下:github

Dart中可能遇到的運算符以下圖所示:算法

運算符.png

上述運算符中,筆者不大熟悉的運算符有:bash

  • 算數運算符:~/
  • 賦值運算符:??
  • 級聯運算符:..
  • 類型斷定運算符:asisis!
  • 其餘運算符:?.

若是你對其餘運算符不大熟悉,能夠查看Dart文檔微信

1.1 算數運算符
  • ~/: 整除;

整除的結果是 運算符左側的數 除以 運算符右側的數 能夠商幾。網絡

5 ~/ 2 = 2;
7 ~/ 3 = 2;
9 ~/ 3 = 0;
複製代碼
  • 賦值運算符:??
String qiShare1 = 'qiShare1';
String qiShare2;
qiShare2 ??= qiShare1;
print(qiShare2);

// 輸出結果
qiShare1

複製代碼

1.2 級聯運算符

  • 級聯運算符:..

.. 級聯運算符ide

class QiCascade {
  String firstProperty;
  String secondProperty;
  String thirdProperty;
  String fourthProperty;
}

class QiSubCascade extends QiCascade{
  
}

void main() {
  
  QiCascade cascade = QiCascade();
  cascade.firstProperty = 'firstPropertyValue';
  cascade.secondProperty = 'secondPropertyValue';
  cascade.thirdProperty = 'thirdPropertyValue';
  cascade.fourthProperty = 'fourthPropertyValue';

  print('輸出屬性:${cascade..firstProperty ..secondProperty ..thirdProperty ..fourthProperty}');
  print('級聯輸出:');
  print(cascade..firstProperty..secondProperty..thirdProperty..fourthProperty);
  print('屬性:${cascade.firstProperty}');
  
  print(cascade.firstProperty);
  print(cascade.secondProperty);
  print(cascade.thirdProperty);
  print(cascade.fourthProperty);

  cascade..firstProperty = 'changedFirstPropertyValue'
  ..secondProperty = 'changedSecondPropertyValue'
  ..thirdProperty = 'changedThirdPropertyValue'
  ..fourthProperty = 'changedFourthPropertyValue';

  print('級聯輸出:${cascade..firstProperty ..secondProperty ..thirdProperty ..fourthProperty}');
}
複製代碼

輸出結果學習

flutter: 輸出屬性:Instance of 'QiCascade'
flutter: 級聯輸出:
flutter: Instance of 'QiCascade'
flutter: 屬性:firstPropertyValue
flutter: firstPropertyValue
flutter: secondPropertyValue
flutter: thirdPropertyValue
flutter: fourthPropertyValue
flutter: 級聯輸出:Instance of 'QiCascade'
複製代碼

看起來級聯運算符能夠用於同時操做並列的實例變量。

1.3 類型斷定運算符

  • 類型斷定運算符:asisis!
操做符 解釋
as 類型轉換
is 若是對象是指定的類型返回true
is! 若是對象是指定的類型返回false
dynamic subCascade = QiSubCascade();
  
  if (subCascade is QiCascade) {
    subCascade.firstProperty = 'isQiCascadeFirstPropertyValue';
  }
  print('subCascade屬性:${subCascade.firstProperty}');
  print('subCascade runtimeType:${subCascade.runtimeType}');

  if(subCascade.runtimeType == QiSubCascade) {
    print('subCascade的runtimeType爲 ${subCascade.runtimeType}');
  }
  
  (subCascade as QiCascade).firstProperty = 'asQiCascadeFirstPropertyValue';
  print('subCascade屬性:${subCascade.firstProperty}');
複製代碼

使用 is 和 as 的區別在於:

  • 使用is:若是上述subCascade不是QiCascade,則條件中的賦值代碼不會執行
  • 使用as:若是上述subCascade爲null 或者不是QiCascade類型,則運行過程當中會拋出異常。

輸出結果

flutter: subCascade屬性:isQiCascadeFirstPropertyValue
flutter: subCascade runtimeType:QiSubCascade
flutter: subCascade的runtimeType爲 QiSubCascade
flutter: subCascade屬性:asQiCascadeFirstPropertyValue
複製代碼

1.4 其餘運算符

運算符 名字 解釋
() 使用方法 表明調用一個方法。
[] 訪問List 訪問list 中特定位置的元素。
. 訪問Member 訪問元素,如上邊咱們訪問cascade.firstProperty。
?. 條件成員訪問 和 . 類型, 可是.左邊操做對象不能爲null,不然拋出異常,?.左邊的操做對象能夠爲null,返回null。
subCascade = null;
  
  try {
    print('賦值null 後訪問成員 ${subCascade.firstProperty}');
  } catch (e) {
    print('異常信息 $e');
  }
  
  print('賦值null 後訪問成員 ${subCascade?.firstProperty}');
複製代碼

輸出結果

flutter: 異常信息 NoSuchMethodError: The getter 'firstProperty' was called on null.
Receiver: null
Tried calling: firstProperty
flutter: 賦值null 後訪問成員 null
複製代碼

若是咱們使用條件成員訪問運算符?.。就不會有上述異常。

  • 其餘運算符:?.: 條件成員訪問,若是操做符左側的實例存在,則會取值 ;

    如qiShare?.name,若是qiShare 不爲null,則返回結果爲qiShare.name。不然返回結果爲null。

subCascade = null;
subCascade ?. firstProperty;
複製代碼

異常

常見的異常有 FormatException格式異常、HttpException網絡異常、FileSystemException操做文件的異常、越界的異常,操做的實例調用了沒有實現的方法 的異常。

2.1 Try

try 用於包含可能出現異常的代碼

2.2 Throw

throw 用於拋出異常。

2.3 Catch

Catch 用於捕獲異常,能夠防止異常繼續傳遞。除非使用了rethrow 會將捕獲的異常再次拋出。

筆者先舉了2個特定的異常例子FormatException 、IntegerDivisionByZeroException

1.FormatException,在把字符串'1234B'轉爲數字的時候出現的類型轉換異常。

var numValue = '1234B';
    try {
      int numValueInt = int.parse(numValue);
      print(numValueInt);
    } on FormatException catch (e){
      print('出現FormatException: $e');
		// rethrow; 使用rethrow 會將catch 住的異常再次拋出 
    } on Exception catch(e) {
      print('Exception: $e');
      // rethrow; 使用rethrow 會將catch 住的異常再次拋出 
    } 

    // 輸出結果:
    /*
    flutter: 出現FormatException: FormatException: Invalid radix-10 number (at character 1)
123\^]4B
     */
複製代碼

2.IntegerDivisionByZeroException 在0做除數的時候出現的異常。整除出現。

// double zeroValue = 0.0; // 若是使用0.0 則IntegerDivisionByZeroException 不會捕獲
	 int zeroValue = 0;
    int num1 = 1;
    try {
      print(num1 ~/ zeroValue); // 會觸發異常 可是也不是除0異常
      // print(num1 / zeroValue); // 不會觸發異常
    } on IntegerDivisionByZeroException catch(e) {
      print('除以0異常:$e');
    } catch (e) {
      print('異常信息:$e');
    }
    // 輸出結果
	 flutter: 除以0異常:IntegerDivisionByZeroException
複製代碼

下邊筆者又列舉了其餘的幾個異常的例子。

// 拋出異常示例
  try {
    throw Exception(
    'Custom Exception'
    );
  } catch (e) {
    print(e);
  }

  try {
    throw '自定義字符串Exception';
  } catch (e) {
    print(e);
  }
  
  List list1 = ['QiShare'];
  try {
    print(list1[1]);  
  } catch (e) {
    print(e);
  }

  try {
    (list1 as QiCascade).firstProperty;
  } catch (e) {
    print(e);
  }

  list1 = null;
  try {
    print(list1[1]);  
  } catch (e) {
    print(e);
  }

  try {
    (list1 as QiCascade).firstProperty;
  } catch (e) {
    print(e);
  }
複製代碼

輸出結果

flutter: Exception: Custom Exception
flutter: 自定義字符串Exception
flutter: RangeError (index): Invalid value: Only valid value is 0: 1
flutter: type 'List<dynamic>' is not a subtype of type 'QiCascade' in type cast
flutter: NoSuchMethodError: The method '[]' was called on null.
Receiver: null
Tried calling: [](1)
flutter: NoSuchMethodError: The getter 'firstProperty' was called on null.
Receiver: null
Tried calling: firstProperty
複製代碼

針對上述代碼的異常捕獲,筆者發現,catch不只能夠捕獲異常也能夠捕獲Error,筆者Dart 的Exceptions 包括Exception 和 Error。而且對如上代碼中RangeError、NoSuchMethodError的代碼作了以下處理:

捕獲RangeError

List list1 = ['QiShare'];
    try {
      print(list1[1]);  
    } on RangeError catch(error) {
      print('RangeError錯誤:$error');
    } catch (e) {
      print(e.runtimeType);
      print(e);
    }
    // 輸出結果:
    /*
    flutter: RangeError錯誤:RangeError (index): Invalid value: Only valid value is 0: 1
    */
    
複製代碼

捕獲NoSuchMethodError

List list1;
    try {
      print(list1[1]);  
    } on NoSuchMethodError catch(noSuchMethodError){
      print('NoSuchMethodError錯誤:$noSuchMethodError');
    } catch (e) {
      print('異常信息:$e');
    }

	// 輸出結果:
    /**
     * flutter: NoSuchMethodError錯誤:NoSuchMethodError: The method '[]' was called on null.
Receiver: null
Tried calling: [](1)
     */
複製代碼

2.4 Finally

Finally 部分的代碼,無論是否有出現異常,都會執行,若是出現了異常,則執行完catch中的代碼後,會執行Finally 中的代碼,若是沒有出現異常,則執行完了try中的代碼後,會執行Finally 中的代碼。

List list1;
    try {
      print(list1[1]);  
    } on NoSuchMethodError catch(noSuchMethodError){
      print('NoSuchMethodError錯誤:$noSuchMethodError');
    } catch (e) {
      print('異常信息:$e');
    } finally {
      print('執行Finally 中的代碼');
    }
    
    
 /**
     * flutter: NoSuchMethodError錯誤:NoSuchMethodError: The method '[]' was called on null.
Receiver: null
Tried calling: [](1)
flutter: 執行Finally 中的代碼
     */
複製代碼

還有一種狀況是try 中的代碼出現了異常,可是沒有使用catch 進行異常捕獲。但使用了finally 語句。像這種狀況,出現異常的狀況下,會先執行finally 中的代碼,而後拋出異常。 代碼以下:

List list3;
    try {
      print(list3[1]);  
    } finally {
      print('執行Finally 中的代碼');
    }
    
    // 輸出結果:
    
    /**
    flutter: 執行Finally 中的代碼
flutter: ══╡ EXCEPTION CAUGHT BY GESTURE ╞═══════════════════════════════════════════════════════════════════
flutter: The following NoSuchMethodError was thrown while handling a gesture:
flutter: The method '[]' was called on null.
flutter: Receiver: null
flutter: Tried calling: [](1)
flutter:
flutter: When the exception was thrown, this was the stack:
flutter: #0 Object.noSuchMethod (dart:core-patch/object_patch.dart:50:5)
省略............
    */
複製代碼

參考學習網址


小編微信:可加並拉入《QiShare技術交流羣》。

關注咱們的途徑有:
QiShare(簡書)
QiShare(掘金)
QiShare(知乎)
QiShare(GitHub)
QiShare(CocoaChina)
QiShare(StackOverflow)
QiShare(微信公衆號)

推薦文章:
Dart基礎(一)
Dart基礎(二)
iOS 短信驗證碼倒計時按鈕
iOS 環境變量配置
iOS 中處理定時任務的經常使用方法
算法小專欄:貪心算法
iOS 快速實現分頁界面的搭建
iOS 中的界面旋轉
奇舞週刊

相關文章
相關標籤/搜索