上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 86 下一页
摘要: https://www.json.cn/ 阅读全文
posted @ 2019-05-12 09:09 富坚老贼 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 一、windows 1.安装JDK jdk必须是1.8 2.安装Node.js (1)node版本必须>=10 (2)不要使用cnpm npm config set registry https://registry.npm.taobao.org --global npm config set di 阅读全文
posted @ 2019-05-09 21:40 富坚老贼 阅读(244) 评论(0) 推荐(0) 编辑
摘要: @override Widget build(BuildContext context) { return Scaffold( body: Center( child: new ListView( children: [ new DataTable(columns: [ new Dat... 阅读全文
posted @ 2019-05-08 13:50 富坚老贼 阅读(1556) 评论(0) 推荐(0) 编辑
摘要: 一、 引入 编写 编译或F5 访问 http://localhost:8080 二、 编码 访问 阅读全文
posted @ 2019-05-05 09:09 富坚老贼 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 1.go bulid 编译成 go build main.go 运行 .\main.exe 更改生成的exe名称 go build -o main.go 2.直接运行不生成.exe文件 go run main.go 3.install go install main go install 只是将编译 阅读全文
posted @ 2019-05-02 23:17 富坚老贼 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1.CircularProgressIndicator 循环进度 圆形 Center( child: Column( children: <Widget>[ RaisedButton( child: Text("aa"), onPressed: () {}, ), CircularProgressI 阅读全文
posted @ 2019-05-02 21:01 富坚老贼 阅读(575) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-02 20:56 富坚老贼 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 一、协程 查看CPU数目 import ( "fmt" "runtime" ) func main() { num := runtime.NumCPU() fmt.Print(num) } 二、管道 管道用来在多个协程间进行通信 初始化分配 //使用make的类型 slice map chan // 阅读全文
posted @ 2019-04-30 20:43 富坚老贼 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Draggable GestureDetector import 'package:flutter/services.dart'; import 'dart:io'; class _MyAppState extends State<MyApp> { //android 沉浸式 @override W 阅读全文
posted @ 2019-04-30 08:45 富坚老贼 阅读(2145) 评论(0) 推荐(0) 编辑
摘要: 一、封装 二、继承 1. 2. 3. 4. 5 6. 7.多重继承 三、接口 1.接口定义 (1)接口本身不能创建实例,但可以现实指向该接口的实例 (2)接口中不能有方法体 (3)如果实现接口则需要实现这个接口的所有方法。 (4)不仅是结构体能实现接口,自定义类型都可以。 (5)一个自定义类型可以实 阅读全文
posted @ 2019-04-27 16:20 富坚老贼 阅读(112) 评论(0) 推荐(0) 编辑
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 86 下一页