上一页 1 2 3 4 5 6 7 ··· 46 下一页
摘要: 参见:https://www.visual-paradigm.com/guide/uml-unified-modeling-language/uml-aggregation-vs-composition/ https://www.iteye.com/blog/stark-summer-981076 阅读全文
posted @ 2022-03-14 10:20 bf378 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1:Header是一个固定长度的Byte数组,具体数据结构参考IndexHeader实现 2:Slot是一块连续Byte数组用于存储Key/Value存储结构,其中Key是一个hash(key),Value是当前元素是第一个索引(也就是当前索引的序号),存储序号目的是便于检索,后面会详细描述。 3: 阅读全文
posted @ 2022-03-08 21:00 bf378 阅读(47) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-10-09 12:01 bf378 阅读(0) 评论(0) 推荐(0) 编辑
摘要: public class JavaBoxCost { public static void main(String[] args) { long start = System.currentTimeMillis(); for (int i = 0; i < Integer.MAX_VALUE - 1 阅读全文
posted @ 2021-09-16 21:55 bf378 阅读(87) 评论(1) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-05 17:54 bf378 阅读(0) 评论(0) 推荐(0) 编辑
摘要: public class StringSize { public static void main(String[] args) throws Exception { System.out.println(" UTF8 ENCODE "); // UTF8 ENCODE 一个中文汉字 3个字节 St 阅读全文
posted @ 2021-09-02 22:30 bf378 阅读(117) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-03-25 19:29 bf378 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 去: /Users/XXXX/Library/Application Support/JetBrains/IntelliJIdea2020.3/plugins 删除对应插件即可 阅读全文
posted @ 2021-02-03 15:53 bf378 阅读(1190) 评论(0) 推荐(0) 编辑
摘要: C语言函数代码: #include "postgres.h" #include "fmgr.h" #ifdef PG_MODULE_MAGIC PG_MODULE_MAGIC; #endif PG_FUNCTION_INFO_V1(add_one); Datum add_one(PG_FUNCTIO 阅读全文
posted @ 2021-01-31 00:32 bf378 阅读(467) 评论(0) 推荐(0) 编辑
摘要: SQL ORDER BY A,B,C 是按照A,B,C三列 默认升序排序 阅读全文
posted @ 2020-11-30 17:02 bf378 阅读(76) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 46 下一页