美文网首页
Swift和Dart (一)

Swift和Dart (一)

作者: 化身孤岛的鲸_ca35 | 来源:发表于2018-11-14 16:07 被阅读61次

    ios 开始初学dart
    既然 有ios 的底子
    比较着学 会学的很快 并且还能复习 swfit 的 一些知识

    1. 对于库的导入

    ios 基本上都是cocopos管理三方库

    dart 用的pub 库 基本上三方库全在pub上

    在 pubspec.yaml 中

    dependencies:
      flutter:
        sdk: flutter
    
      # The following adds the Cupertino Icons font to your application.
      # Use with the CupertinoIcons class for iOS style icons.
      cupertino_icons: ^0.1.2
      english_words: ^3.1.4
    // 这写上 需要导入的三方  终端执行 flutter pubspec get 就可以下载到
    

    项目中使用三方库

    swift 中直接 import 包名就好

    在dart 中 import 'package:english_words/english_words.dart';

    如果两个库有冲突的标识符,可以为其中一个或两个库都指定前缀

    import 'package:lib1/lib1.dart';
    import 'package:lib2/lib2.dart' as lib2;
    
    var element1 = new Element();
    var element2 = new lib2.Element();
    

    如果只需要使用库的一部分,可以选择性的导入

    //只导入foo
    import 'package:lib1/lib1.dart' show foo;
    
    //导入除了foo以外的所有
    import 'package:lib2/lib2.dart' hide foo;
    

    让程序延迟加载一个库时,延迟加载库,您必须使用deferred as,await 关键字暂停执行直到加载库,您可以多次使用loadLibrary(),库只加载一次

    import 'package:deferred/hello.dart' deferred as hello;
    
    // 当你需要使用库,使用 loadLibrary() 调用库
    greet() async {
      await hello.loadLibrary();
      hello.printGreeting();
    }
    

    自定义库

    swift 自定义库 不用多说 创建 了 直接拿来用就好
    dart 里面创建自定义库

    首先创建mystorage.dart文件,声明mystorage库和需要的util.dart与tool.dart文件

    library mystorage;
    
    import "dart:math";
    
    part "util.dart";
    part "tool.dart";
    
    void printPi() => print(PI);
    

    创建util.dart文件供mystorage库使用

    part of mystorage;
    
    void printUtil() => print("Hello util.dart!");
    

    创建tool.dart文件供mystorage库使用

    part of mystorage;
    
    void printTool() => print("Hello tool.dart!");
    
    

    最后在主方法中调用mystorage库

    import "mystorage.dart";
    
    void main(){
        printUtil();
        printTool();
        printPi();
    }
    

    泛型

    swift 中的 泛型 可以定义一个不确定类型的参数

     func getBody <T> (name: T) {
        print(name)
      }
    cell.getBody(name: 1)
    cell.getBody(name: "bob")
    // 这样都是可以的 
    // 泛型也可以约束类型 
    

    dart 中的泛型

    dart中所有基本类型数组和列表都是泛型,这样可以提高代码的可读性

     var names = new List<String>();
        names.addAll(['Seth', 'Kathy', 'Lars']);
        // 检查模式编译失败,生产模式编译成功
        names.add(42);
    

    抛出异常
    swift

    // 处理异常的 枚举
    enum TestError: Error{
      case one
      case two
    }
    
    // 抛出异常
     func throwOut(num: Int) throws {
        if num == 1 {
          throw TestError.one
        } else if num == 2 {
          throw TestError.two
        } else {
          print("成功")
        }
      }
    
    // 捕捉异常
    
     do {
           try cell.throwOut(num: 2)
        } catch TestError.one {
          print("one")
        } catch TestError.two {
          print("two")
        } catch {
          print("three")
        }
    

    dart

      // 抛出一个异常
        throw new FormatException('Expected at least 1 section');
    
        // 抛出任意异常对象
        throw 'Out of llamas!';
    
        // 用=> statements在任何地方抛出任意异常
       distanceTo(Point other) => throw new UnimplementedError();
    
    //处理异常
    
     try {
            breedMoreLlamas();
        } on OutOfLlamasException {
            buyMoreLlamas();
        }
    
    //Finally
    
    // 不管有没有异常 都会执行 这个字段
    
     try {
          breedMoreLlamas();
        } finally {
          //总是执行,即使抛出异常
          cleanLiamaStalls();
        }
    

    相关文章

      网友评论

          本文标题:Swift和Dart (一)

          本文链接:https://www.haomeiwen.com/subject/ymgdfqtx.html