12/5
This commit is contained in:
parent
e28f9c0394
commit
b0f6f19193
38
20241205 日报.md
Normal file
38
20241205 日报.md
Normal file
@ -0,0 +1,38 @@
|
||||
# 2024/12/05 日报
|
||||
|
||||
### 做了什么
|
||||
|
||||
- 海康私有协议Core模块开发
|
||||
- NewCore -- 创建业务核心
|
||||
|
||||
- LoadDeviceList --加载设备列表
|
||||
|
||||
- LoadChannelList --刷新通道列表
|
||||
|
||||
- CheckStatus --检查设备状态
|
||||
|
||||
- 测试功能是否正常使用
|
||||
|
||||
|
||||
### 学到了什么
|
||||
|
||||
- go语言中的继承概念
|
||||
|
||||
```go
|
||||
type Base struct{}
|
||||
func (b *Base) BaseMethod() {
|
||||
println("This is a base method")
|
||||
}
|
||||
type Derived struct {
|
||||
Base
|
||||
}
|
||||
func main() {
|
||||
d := Derived{}
|
||||
d.BaseMethod()
|
||||
}
|
||||
```
|
||||
|
||||
- git的使用流程
|
||||
- 每天先将代码拉到本地
|
||||
- 然后在最新的dev分支上 建立个人分支
|
||||
- 下班前必须提交代码
|
Loading…
Reference in New Issue
Block a user