-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.dart
48 lines (44 loc) · 1 KB
/
library.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// dart中的库主要有三种:
// 1.我们自定义库
// import 'lib/xx.dart';
// 2.系统内置库
// import 'dart:math';
// import 'dart:io';
// import 'dart:convert';
// 3.Pub包管理系统中的库
// https://pub.dev/packages
// https://pub.flutter-io.cn/packages
// https://pub.dartlang.org/flutter
// 1.需要在自己项目根目录新建一个pubspec.yaml
// 2.在pubspec.yaml文件 然后配置名称、描述、依赖等信息
// 3.然后运行pub get获取包下载到本地
// 4.项目中引入库 import 'package:http/http.dart' as http,看文档
// // import 'lib/'
// abstract class Animal{
// eat();
// }
// class Dog extends Animal{
// @override
// eat(){
// print('小狗吃骨头');
// }
// run(){
// print('小狗再跑');
// }
// }
// class Cat extends Animal{
// @override
// eat(){
// print('猫再吃东西');
// }
// run(){
// print('run');
// }
// }
// main(){
// Animal d = new Dog();
// d.eat();
// }
main(){
print('mm');
}