
Java编程知识
文章平均质量分 89
金融行业程序员
金融行业公司程序员一枚,分享程序开发知识和金融系统常识。
展开
-
java日期格式不应使用 Week Year (“YYYY“)
Few developers are aware of the difference between Y for "Week year" and y for Year when formatting and parsing a date with SimpleDateFormat. That's likely because for most dates, Week year and Year are the same, so testing at any time other than the first原创 2020-10-23 15:59:14 · 565 阅读 · 1 评论 -
Java 8 异步 API、循环、日期
java8 异步api、循环、日期 转载请注明出处:https://www.cnblogs.com/funnyzpc/p/10801470.html 异步api 对于多任务耗时的业务场景,一般我们会用到线程异步处理,在以前我们用 Thread 或者 Runnable 来实现异步,这是oracle官方做法,不过缺点很明显 对于复杂业务场景需要配置线程池 代码繁杂,对于新手容易造成不必要的bug 如果涉及到线程锁或线程通讯就棘手了 现在,java8为我们提供了CompletableFuture类,可转载 2020-10-20 11:02:36 · 155 阅读 · 0 评论