代码怪 会编程,懂技术,爱科学,更会分享
go/golang的interface深拷贝|deepcopy
发布于: 2021-01-24 更新于: 2025-02-26

golang默认interface是不会deepcode的,那怎么来呢?

直接用这个库吧!!!点我获取github的deepcopy

使用的话,直...

阅读更多
golang遍历json/处理json/读取全部的key value
发布于: 2021-01-24 更新于: 2025-02-26

golang如何遍历json呢?

在某些特定需求下,我们需要遍历json,并修改之,请参考下面的代码!!把key和value都打印了出来!

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main

import (
"encoding/json"
"fmt"
)

func main() {
// Creating the maps for JSON
m := map[string]interface{}{}

// Parsing/Unmarshalling JSON encoding/json
err := json.Unmarshal([]byte(input), &m)

if err != nil {
panic(err)
}
parseMap(m)
}

func parseMap(aMap map[string]interface{}) {
for key, val := range aMap {
switch concreteVal := val.(type) {
case map[string]interface{}:
fmt.Println(key)
parseMap(val.(map[string]interface{}))
case []interface{}:
fmt.Println(key)
parseArray(val.([]interface{}))
default:
fmt.Println(key, ":", concreteVal)
}
}
}

func parseArray(anArray []interface{}) {
for i, val := range anArray {
switch concreteVal := val.(type) {
case map[string]interface{}:
fmt.Println("Index:", i)
parseMap(val.(map[string]interface{}))
case []interface{}:
fmt.Println("Index:", i)
parseArray(val.([]interface{}))
default:
fmt.Println("Index", i, ":", concreteVal)

}
}
}

const input = `
{
"data": [
{
"domain": "ni.suock.com",
"method": "GET",
"data": "empty data",
"path": "/node/clientnodelist",
"reply": "reply data1",
"base64reply": "reply data2"
},
{
"domain": "hi.nihao.com",
"method": "POST",
"data": "",
"path": "/base/captcha",
"reply": "reply data1",
"base64reply": ""
}
]
}
`

阅读更多
cef从源码编译全过程
发布于: 2021-01-23 更新于: 2025-02-26

预读

  • 不懂就请参考官方地址
  • 一般要2步,下载 和 编译
  • 创建文件结构
    1
    2
    3
    4
    5
    6
    7
    8
    9
    ~/code/
    automate/ <-- 全部脚本放到这里
    automate-git.py <-- CEF build script
    chromium_git/
    cef/ <-- CEF source checkout
    chromium/
    src/ <-- Chromium source checkout
    update.[bat|sh] <-- Bootstrap script for automate-git.py
    depot_tools/ <-- Chromium build tools
阅读更多
批处理 bat变量重新赋值
发布于: 2021-01-23 更新于: 2025-02-26
1
2
3
4
5
6
7
8
9
10
11
@echo off
call Signature.exe "C:\Test.dll"
SETLOCAL ENABLEDELAYEDEXPANSION
set "nResult="
if %errorlevel% == 1024 (
set "nResult=1024"
) else (
set "nResult=2048"
)
@echo %nResult%
pause
阅读更多
C++/Duilib自定义控件实现
发布于: 2021-01-18 更新于: 2025-02-26

一、根据当前的需要来继承相应的控件,已便减少重复开发

一般继承 DoPaint来写,若需要在最上层显示的,则要继承DoPostPaint()

解决 git慢/git clone慢/加速你的git
发布于: 2021-01-18 更新于: 2025-02-26

img

同样是个坑爹的问题困惑着许多开发者,如何解决?

一劳永逸,比较完美,支持子模块

  1. 确保你已经正确安装好了git,...
阅读更多
vcpkg详细安装过程
发布于: 2021-01-05 更新于: 2025-02-26

参考安装视频

点我去看视频