摘要:
CompletableFuture 实现了Futurn, CompletionStage,而CompletionStage有好多方法,需要慢慢探究,此次记录仅为CompletableFuture探索记录之一 先看部分源码: public class CompletableFuture<T> impl 阅读全文
摘要:
1 选择判断 select case 2 when 1 then 'one' when 2 then 'two' else 'more' end union all select case 2 when 1 then 'one' when 2 then 'two' else 'more' end; 阅读全文