https://raw.githubusercontent.com/dillonzq/LoveIt/master/exampleSite/assets/images/avatar.png

色温 是什么? 绝对黑体加热后呈现的颜色 have nothing to do with brightness use to descirbe the light appearance change(color changing); orange ->blue types more warm(sleep) <—- —> more cool(work) warm(warm white): 暖色 cool white(neutral white):正白色 cool(daylight): 冷色 for: Sunrise/Sunset: 3200 K Natural Daylight: 5500 K Blue Sky: 12000 K

firmware vs os same: control the hardware in simple device, firmware is os: router,printer in complex device: firmware need load os differ: store location: fireware load in read-only memory (rom/flash-memory) os store in hard disk a startup in compouter load self-test fireware load boot loader fireware load os a startup in router: load sef-test fireware load router fireeware

你是一个 go 语言专家,我正在学习go,进对我的总结进行评价并指导,给出一些建议, 并给出你修订后的版本 title: “map” date: 2020-05-14T11:39:03+08:00 draft: false tags: [“go”,“hash”] lastmod: 2023-04-18T16:47:26+0800 Map实现原理分析 深度解密Go语言之 map 由浅到深,入门Go语言Map实现原理 golang map底层实现 哈希表 深入理解 Go map:赋值和扩容迁移 深度解密Go语言之 map map 的实现原理 | Go 程序员面试笔试宝典 遍历过程 | Go 程序员面试笔试宝典 create: 字面量 创建:使用常量创建 函数创建: make 1 2 3 4 5 6 //--1. init // 1.literal var a = map[int]int{1:1, 2:2}; // 2. make var b = make(map[int]int); basic operation: 1 2 3 4 5 delete(m,"1") for k,v := range m v, ok =m["1"] how key pointer:

enum Ultimate Visual Guide to Go Enums and iota Representing enums in go what is enum? Enumeration Type: 一组常量,同属于一种类型 相比常量 枚举是常量的升级版 1. 自动类型校验,不需要额外检查 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 // before public void describe(int s){ //s变量不能超越边界,校验条件 if(s >= 0 && s <4){ switch(s){ case Season.Summer: System.out.println("Summer is very hot!"); break; case Season.