within the customer engine ver. 4.19 base, I try to do the array bucket to handle all the overlap collision and somehow to overlapend and begin is inv ...
分类:
其他好文 时间:
2019-11-08 21:01:46
阅读次数:
114
By 1800 more than a thousand steam engines were in use in the British Isles, and Britain retained a virtual monopoly on steam engine production until ...
分类:
其他好文 时间:
2019-11-08 20:53:30
阅读次数:
88
1.日期转换成时间戳 var now=new DateTime.now(); print(now.millisecondsSinceEpoch); //单位毫秒,13位时间戳 2.时间戳转换成日期 var now=new DateTime.now(); var a=now.millisecondsS ...
分类:
其他好文 时间:
2019-11-08 12:38:19
阅读次数:
327
1.什么是core文件?有问题的程序运行后,产生“段错误 (核心已转储)”时生成的具有堆栈信息和调试信息的文件。 编译时需要加 -g 选项使程序生成调试信息: gcc -g core_test.c -o core_test 2.怎样配置生成 core 文件(1)core文件开关 ①使用 ulimit ...
分类:
其他好文 时间:
2019-11-08 12:28:18
阅读次数:
86
第一步:自定义一个枚举类型规范异常信息(一般公司会有自己的枚举类。这里只是举例的信息) @Getter public enum ExceptionEnum { INVALID_FILE_TYPE(400, "无效的文件类型!"), INVALID_PARAM_ERROR(400, "无效的请求参数! ...
分类:
编程语言 时间:
2019-11-06 01:22:41
阅读次数:
277
__ "Codeforces Round 587 (Div. 3)" __ __ "A. Prefixes" __ __思路:水题__ AC代码 ...
分类:
其他好文 时间:
2019-11-05 22:09:54
阅读次数:
131
__ "Codeforces Round 598 (Div. 3)" __ __ "A. Payment Without Change" __ __思路:水题 没开long long wa2(考场降智__ AC代码 ...
分类:
其他好文 时间:
2019-11-05 21:37:06
阅读次数:
113
__ "Codeforces Round 590 (Div. 3)" __ __ "A. Equalize Prices Again" __ __思路:水题__ AC代码 ...
分类:
其他好文 时间:
2019-11-05 21:17:04
阅读次数:
105
Dubbo是阿里开源的一套服务治理与rpc服务,它主要以zookeeper为注册中心,服务提供者把自己的ip和端口发布到注册中心供调用方使用。正常情况下调用方与发布方的网络是互通的,但是如果服务提供方运行在docker里,那它发布的地址可能调用者访问不了,这是迁移Dubbo应用到Kubernetes的一个大问题,本文介绍如何解决这个问题。
分类:
Web程序 时间:
2019-11-04 23:15:43
阅读次数:
154