上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: 接口 type Usber interface { start() stop() } //如果接口里面有方法 必须使用结构体或自定义类型来实现 type Phone struct { Name string } //手机要实现usb接口必须实现接口所有方法 func (p Phone) start( 阅读全文
posted @ 2020-12-10 13:49 FinnYY 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 结构体 结构体转JSON(结构体转换成JSON 字段必须是公有的) jsonByte,_ := json.Marshal(s1) //返回一个byte类型数组 s1结构体对象 jsonStr := string(jsonByte) //把byte类型数组转json字符串 JSON转结构体 err : 阅读全文
posted @ 2020-12-09 17:23 FinnYY 阅读(110) 评论(0) 推荐(0) 编辑
摘要: Time timeObj := time.Now()fmt.Println(timeObj)year := timeObj.Year()//年month := timeObj.Month()//月day := timeObj.Day()//日hour := timeObj.Hour()//时minu 阅读全文
posted @ 2020-12-08 22:17 FinnYY 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 数组: 定义: 方式一: arr1 := [...]int{1,2,3} 方式二: arr2 := [3]int{1,2,3} 方式三: var arr3 [3]int 遍历: //遍历数组 for k, v :=range arr3{ fmt.Println("key:%v,value:$v",k 阅读全文
posted @ 2020-12-08 16:28 FinnYY 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1.帮助文档地址: https://studygolang.com/pkgdoc 2.核心包图 阅读全文
posted @ 2020-12-08 11:31 FinnYY 阅读(88) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1pt41127FZ?from=search&seid=11652856076656638360 阅读全文
posted @ 2020-12-01 21:37 FinnYY 阅读(64) 评论(0) 推荐(0) 编辑
摘要: http://cnblogs.com/liuqifeng/p/9148831.html 一、基础1、说明:创建数据库 CREATE DATABASE database-name 2、说明:删除数据库 drop database dbname 3、说明:备份sql server 创建 备份数据的 de 阅读全文
posted @ 2020-09-17 09:22 FinnYY 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1.创建actions (actionType.js ,cart.js) actionType.js export default { CART_AMOUNT_INCREMENT:'CART_AMOUNT_INCREMENT', CART_AMOUNT_DECREMENT:'CART_AMOUNT_ 阅读全文
posted @ 2020-09-15 00:02 FinnYY 阅读(192) 评论(0) 推荐(0) 编辑
摘要: import React, { Component ,createContext} from 'react' console.log(createContext()) const { Provider, //提供者 Consumer:CounterConsumer //解构出来重新赋值给一个Coun 阅读全文
posted @ 2020-09-09 23:31 FinnYY 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 1.子组件操作父组件值 父组件代码: import React, { Component } from 'react' import Demo from './Demo' class Todo extends Component { constructor(){ super(); this.stat 阅读全文
posted @ 2020-09-08 23:44 FinnYY 阅读(140) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页