首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
用列专题
正则表达式用列
1,匹配图片 /<img(.*?)\/?>/i 2,匹配图片(src中不包含某某字符) /<img.*?[\s]src[\s]*=[\'|\"](http((?!album).)*?)[\'|\"].*?[\/]?>/i/<img[^\/]*?[\s]src[\s]*=[\'|\"](((?!album).)*?)[\'|\"].*?[\/]?>/i
阅读更多...
CompletableFuture、ListenableFuture高级用列
CompletableFuture 链式 public static void main(String[] args) throws Exception {CompletableFuture<Integer> thenCompose = T1().thenCompose(Compress::T2).thenCompose(Compress::T3);Integer result = thenC
阅读更多...
CompletableFuture高级用列
链式 public static void main(String[] args) throws Exception {CompletableFuture<Integer> thenCompose = T1().thenCompose(Compress::T2).thenCompose(Compress::T3);Integer result = thenCompose.get();Syste
阅读更多...