上一页 1 2 3 4 5 6 7 8 ··· 46 下一页
摘要: 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 阅读(485) 评论(0) 推荐(0) 编辑
摘要: SQL ORDER BY A,B,C 是按照A,B,C三列 默认升序排序 阅读全文
posted @ 2020-11-30 17:02 bf378 阅读(80) 评论(0) 推荐(0) 编辑
摘要: https://docs.oracle.com/en/java/javase/14/docs/specs/man/java.html 阅读全文
posted @ 2020-10-22 15:45 bf378 阅读(170) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-09-03 10:34 bf378 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-09-01 10:07 bf378 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-08-31 20:01 bf378 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Java Unsafe 测试代码 import com.User; import org.junit.Before; import org.junit.Test; import sun.misc.Unsafe; import java.lang.reflect.Field; import java. 阅读全文
posted @ 2020-08-24 21:56 bf378 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 例如: Duration.ofMinutes(20) = PT20M Period.ofDays(10) = P10D 参考:https://stackoverflow.com/questions/44662242/is-there-a-name-for-date-time-interval-for 阅读全文
posted @ 2020-08-12 18:22 bf378 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 一、为什么需要反码? 反码的作用就相当于数学中的负数。 对于小学生来说,会做的算术题是:5-3,但是不会做3-5。于是,我们上初中的时候,数学里就引进了一个新的概念:负数。引入负数之后,本来是减法的运算就可以变成加法来实现: 3-5=3+[-5]=[-2],中括号代表“负数”,“负数”就是我们人为给 阅读全文
posted @ 2020-08-05 19:41 bf378 阅读(1465) 评论(1) 推荐(0) 编辑
摘要: import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.RejectedExecutionHandler; 阅读全文
posted @ 2020-08-04 18:58 bf378 阅读(826) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 46 下一页