摘要:
https://stackoverflow.com/questions/2376915/how-to-print-out-the-memory-contents-of-a-variable-in-c #include <stdio.h> #include <string.h> #include <i 阅读全文
摘要:
c++ 链式哈希(hash table) https://www.tutorialspoint.com/data_structures_algorithms/hash_data_structure.htm redis 单线程or多线程 https://juejin.im/post/684490413 阅读全文
摘要:
define fun(x) #x, 会把x扩展为字符串 如果要将x代表的变量,转为字符串,而不是把x直接转为字符串,需要做下转换。 #include <iostream> #define STR(x) #x #define MAX 100 #define STR1(x) #x #define STR 阅读全文
摘要:
最近项目中遇到一个问题, 玩家平A怪物, 没隔一段时间,都会失败一次。 看服务器日志, 是没隔一段时间,会出现一次技能出队异常的log (机制为:收到客户端消息, 如果当前不可释放, 如CD、技能延迟等,会暂存队列) 一开始奇怪的是,有的客户端能重现,有的客户端不能重现。折腾了很久,才发现是客户端帧 阅读全文
摘要:
#include <iostream> using namespace std; struct SData { SData() { std::cout << "default construct" << std::endl; } SData(int value) : a(value) { std:: 阅读全文
摘要:
IS曲线, I即投资 investment, S即储蓄 saving y = c + i + g c 消费, i 投资, g 政府购买, 在不考虑出口时, 这3部分构成总产出。 进一步表示: y = c(y-t) + i(r) + g 其中 c(y-t), 0< c' < 1, 表示消费是产出的递增 阅读全文
摘要:
smb 协议,局域网,电脑手机共享文件。好方便!(以前还折腾些ssh...😓晕, 要补点网络协议相关的书了) mac电脑 + iphone: mac电脑,开启file sharing iphone "文件" app, 连接服务器-> 输入mac的局域网ip, 输入mac 用户名&密码, 登录。 用 阅读全文
摘要:
go image 试验, 生成心形线。 思路: go image 包生成的image数据 -> 转化为html 格式, 通过网页查看图片。 先上脚本(更改数据格式为 -> html) gofile=$1 htmfile=$2 go build $gofile.go eval "./$gofile" 阅读全文
摘要:
go 的 interface 格式: 1) 定义接口 type interface_name interface { func_name() value_type } 2) 将类型与接口绑定, 即实现func_name 假设类型为 type_name ex: type type_name struc 阅读全文
摘要:
斐波那契数列 go 语言, 函数闭包实现 package main import "fmt" func fibonacci() func() int { cur := 1 next := 1 return func() int { ret := cur // 记录当前值 cur = next // 阅读全文