商城项目【尚品汇】08异步编排

文章目录

  • 1.线程的创建方式
    • 1.1继承Thread类,重写run方法
    • 1.2实现Runnable接口,重写run方法。
    • 1.3实现Callable接口,重新call方法
    • 1.4以上三种总结
    • 1.5使用线程池创建线程
      • 1.5.1线程池创建线程的方式
      • 1.5.2线程池的七大参数含义
      • 1.5.3线程池的工作流程
      • 1.5.4一个线程池core:7,max:20,queue:50。100个并发进来,怎么分配。
  • 2.CompletableFuture异步编排
    • 2.1创建异步对象方式
    • 2.2计算完成时回调方法
      • 2.1.1方法完成时的感知(方法一)
      • 2.1.2方法完成时的处理(方法二)
    • 2.3线程的串行化的方法
      • 2.3.1不能接收值且没有返回值
      • 2.3.2可以接收值但是没有返回值
      • 2.3.3可以接收值也可以返回值
    • 2.4两任务组合-一个完成即可
    • 2.5两任务组合-两个都要完成
    • 2.6多任务组合
    • 2.7查看商品详情实战

1.线程的创建方式

1.1继承Thread类,重写run方法

package com.atguigu.gmall.product.thread;import java.math.BigDecimal;public class ThreadTest {public static void main(String[] args) {/*** 线程的创建方式* 1.继承Thread类*///开启线程System.out.println("主线程开始");Thread thread = new Thread01();thread.start();System.out.println("主线程完毕");}public static class Thread01 extends Thread{//创建线程方法一//通过继承Thread类重写run()方法,在run()方法中编写业务类@Overridepublic void run() {System.out.println("通过继承Thread类,重写run()方法,创建线程"+Thread.currentThread().getId());BigDecimal bigDecimal = new BigDecimal(10);BigDecimal bigDecimal1 = new BigDecimal(3);BigDecimal divide = bigDecimal1.divide(bigDecimal);System.out.println("divide = " + divide);}}
}

结果
在这里插入图片描述

1.2实现Runnable接口,重写run方法。

package com.atguigu.gmall.product.thread;import java.math.BigDecimal;public class RunableTest {public static void main(String[] args) {/*** 创建线程的方法二:* 通过实现Runable接口,重新run方法,创建线程。*///开启线程System.out.println("主线程开始");Runable01 runable01 = new Runable01();Thread thread = new Thread(runable01);thread.start();System.out.println("主线程完毕");}public static class Runable01 implements Runnable{@Overridepublic void run() {System.out.println("通过实现Runnable接口,重写run()方法,创建线程"+Thread.currentThread().getId());BigDecimal bigDecimal = new BigDecimal(10);BigDecimal bigDecimal1 = new BigDecimal(3);BigDecimal divide = bigDecimal1.divide(bigDecimal);System.out.println("divide = " + divide);}}
}

在这里插入图片描述

1.3实现Callable接口,重新call方法

package com.atguigu.gmall.product.thread;import java.math.BigDecimal;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.FutureTask;public class CallableTest {public static void main(String[] args) throws ExecutionException, InterruptedException {/*** 创建线程的方法三* 通过实现Callable<>接口,重写call方法,创建线程。可以获取到线程的返回值*/System.out.println("主线程开始");FutureTask<String> futureTask = new FutureTask<String>(new Callable01());//开启线程new Thread(futureTask).start();//获取线程的返回值,会阻塞主线程System.out.println("主线程阻塞。。。。。。");String s = futureTask.get();System.out.println("线程的返回值s = " + s);System.out.println("主线程结束");}public static class Callable01 implements Callable<String>{@Overridepublic String call() throws Exception {System.out.println("通过实现Callable<>接口,重写call方法,创建线程。可以获取到线程的返回值"+Thread.currentThread().getId());BigDecimal bigDecimal = new BigDecimal(10);BigDecimal bigDecimal1 = new BigDecimal(3);BigDecimal divide = bigDecimal1.divide(bigDecimal);System.out.println("divide = " + divide);return divide.toString();}}
}

在这里插入图片描述

1.4以上三种总结

1.开启线程的方式,Thread对象调用start方法。
2.以上三种只有第三种可以接收线程的返回值。

1.5使用线程池创建线程

1.5.1线程池创建线程的方式

        /*** 使用线程池创建线程*/ThreadPoolExecutor executor = new ThreadPoolExecutor(10,20,10,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1000),Executors.defaultThreadFactory(),new ThreadPoolExecutor.AbortPolicy());

1.5.2线程池的七大参数含义

    /*** Creates a new {@code ThreadPoolExecutor} with the given initial* parameters.** @param corePoolSize the number of threads to keep in the pool, even*        if they are idle, unless {@code allowCoreThreadTimeOut} is set* @param maximumPoolSize the maximum number of threads to allow in the*        pool* @param keepAliveTime when the number of threads is greater than*        the core, this is the maximum time that excess idle threads*        will wait for new tasks before terminating.* @param unit the time unit for the {@code keepAliveTime} argument* @param workQueue the queue to use for holding tasks before they are*        executed.  This queue will hold only the {@code Runnable}*        tasks submitted by the {@code execute} method.* @param threadFactory the factory to use when the executor*        creates a new thread* @param handler the handler to use when execution is blocked*        because the thread bounds and queue capacities are reached*/public ThreadPoolExecutor(int corePoolSize,int maximumPoolSize,long keepAliveTime,TimeUnit unit,BlockingQueue<Runnable> workQueue,ThreadFactory threadFactory,RejectedExecutionHandler handler)
  • corePoolSize:核心的线程池数。也就是线程池一创建就有的。
  • maximumPoolSize:最大的线程池数。这个线程池可以创建的最大的线程池数。
  • keepAliveTime:当线程池中的线程数大于核心的线程池时,这些线程池执行完任务保持存活的时间。
  • unit:时间单位
  • workQueue:阻塞队列,当任务大于核心线程数时,任务就会放在阻塞队列中。
  • threadFactory:创建工厂。指定线程名。
  • handler:拒绝策略。当线程池中所有的线程都在执行任务,而且阻塞队列已经满了。那么来了任务就需要执行拒绝策略了。

1.5.3线程池的工作流程

1、创建线程池,会创建core线程。
2、当任务来了,core线程进行处理,若core不够,那么就会将任务放在workQueue中,当核心线程空闲下来,去workQueue阻塞队列中去任务。
3、若阻塞队列满了,线程池就去开启新的线程,直至线程池中的线程数达到maximumPoolSize最大线程池数。若新的线程空闲下来,过了过期时间,就会自动销毁。
4、若线程池中的线程池数达到了最大线程池数,而且还来了任务,那么就会使用拒绝策略进行处理。
5、所有的线程都是由指定的factory工厂创建的。

1.5.4一个线程池core:7,max:20,queue:50。100个并发进来,怎么分配。

首先:7个线程直接进行处理。
然后:进入队列50个。
再次:开启13个线程进行处理。
最后:70个被安排,30个交给阻塞队列。

2.CompletableFuture异步编排

2.1创建异步对象方式

   //方法一:public static CompletableFuture<Void> runAsync(Runnable runnable) {return asyncRunStage(asyncPool, runnable);}//方法二public static CompletableFuture<Void> runAsync(Runnable runnable,Executor executor) {return asyncRunStage(screenExecutor(executor), runnable);}//方法三public static <U> CompletableFuture<U> supplyAsync(Supplier<U>supplier) {return asyncSupplyStage(asyncPool, supplier);}//方法四public static <U> CompletableFuture<U> supplyAsync(Supplier<U> supplier,Executor executor) {return asyncSupplyStage(screenExecutor(executor), supplier);}

1.runXxx方法没有返回值,supplyXxx方法有返回值。
2.可以传入自定义的线程池,否则默认的线程池。
3.都不会接收返回值。

代码

package com.atguigu.gmall.product.completableFuture;import rx.Completable;import java.math.BigDecimal;
import java.util.concurrent.*;public class Test {public static ExecutorService executors = Executors.newFixedThreadPool(10);public static void main(String[] args) throws ExecutionException, InterruptedException {/*** 1.创建异步对象*///CompletableFuture类中的静态方法long startMain = System.currentTimeMillis();System.out.println("主线程--开始");CompletableFuture<Void> future01 = CompletableFuture.runAsync(new Runnable01());CompletableFuture<Void> future02 = CompletableFuture.runAsync(() -> {long start02 = System.currentTimeMillis();System.out.println("id============================");long id = Thread.currentThread().getId();System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide+"02-"+(System.currentTimeMillis() - start02));}, executors);CompletableFuture<String> future03 = CompletableFuture.supplyAsync(() -> {long start03 = System.currentTimeMillis();long id = Thread.currentThread().getId();System.out.println("id============================");System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide+"03-"+(System.currentTimeMillis() - start03));return divide.toString();});System.out.println("获取返回结果future03.get() = " + future03.get());CompletableFuture<String> future04 = CompletableFuture.supplyAsync(() -> {long start04 = System.currentTimeMillis();long id = Thread.currentThread().getId();System.out.println("id============================");System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide+"04-"+(System.currentTimeMillis() - start04));return divide.toString();},executors);System.out.println("获取返回结果future04 = " + future04.get());System.out.println("主线程--结束"+"Main用时"+(System.currentTimeMillis() - startMain));}public static class Runnable01 implements Runnable{@Overridepublic void run() {long start01 = System.currentTimeMillis();System.out.println("id============================");long id = Thread.currentThread().getId();System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide+"01-"+(System.currentTimeMillis() - start01));}}public static class Callable01 implements Callable<String> {@Overridepublic String call() {System.out.println("id============================");long id = Thread.currentThread().getId();System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide);return divide.toString();}}
}

2.2计算完成时回调方法

2.1.1方法完成时的感知(方法一)

    public CompletableFuture<T> whenComplete(BiConsumer<? super T, ? super Throwable> action) {return uniWhenCompleteStage(null, action);}public CompletableFuture<T> whenCompleteAsync(BiConsumer<? super T, ? super Throwable> action) {return uniWhenCompleteStage(asyncPool, action);}public CompletableFuture<T> whenCompleteAsync(BiConsumer<? super T, ? super Throwable> action, Executor executor) {return uniWhenCompleteStage(screenExecutor(executor), action);}public CompletableFuture<T> exceptionally(Function<Throwable, ? extends T> fn) {return uniExceptionallyStage(fn);}

whenComplete 可以处理正常结果但是不能返回结果、感知异常但是不能处理异常。这个方法不可以进行返回值
exceptionally可以感知异常并且修改返回值进行返回。

whenComplete 和 whenCompleteAsync 的区别:
whenComplete:是执行当前任务的线程执行继续执行 whenComplete 的任务。
whenCompleteAsync:是执行把 whenCompleteAsync 这个任务继续提交给线程池来进行执行。
方法不以 Async 结尾,意味着 Action 使用相同的线程执行,而 Async 可能会使用其他线程执行(如果是使用相同的线程池,也可能会被同一个线程选中执行)
代码示例

package com.atguigu.gmall.product.completableFuture;import java.math.BigDecimal;
import java.util.concurrent.*;public class Test02 {public static ExecutorService executors = Executors.newFixedThreadPool(10);public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFuture<String> exceptionally = CompletableFuture.supplyAsync(() -> {int i = 10/0;return "a";}).whenCompleteAsync((res, exception) -> {//尽可以感到异常,不可以修改返回结果System.out.println("输出返回结果" + res);}, executors).exceptionally((exception -> {//可以感到异常,并且修改返回结果return "b";}));System.out.println("获取返回结果:" + exceptionally.get());}public static class Runnable01 implements Runnable{@Overridepublic void run() {long start01 = System.currentTimeMillis();System.out.println("id============================");long id = Thread.currentThread().getId();System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide+"01-"+(System.currentTimeMillis() - start01));}}public static class Callable01 implements Callable<String> {@Overridepublic String call() {System.out.println("id============================");long id = Thread.currentThread().getId();System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide);return divide.toString();}}
}

2.1.2方法完成时的处理(方法二)

    public <U> CompletableFuture<U> handle(BiFunction<? super T, Throwable, ? extends U> fn) {return uniHandleStage(null, fn);}public <U> CompletableFuture<U> handleAsync(BiFunction<? super T, Throwable, ? extends U> fn) {return uniHandleStage(asyncPool, fn);}public <U> CompletableFuture<U> handleAsync(BiFunction<? super T, Throwable, ? extends U> fn, Executor executor) {return uniHandleStage(screenExecutor(executor), fn);}

不仅可以处理正常结果而且可以处理异常
不仅可以接收值,而且可以返回处理结果

代码实例

package com.atguigu.gmall.product.completableFuture;import java.math.BigDecimal;
import java.util.concurrent.*;public class Test02 {public static ExecutorService executors = Executors.newFixedThreadPool(10);public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFuture<String> exceptionally = CompletableFuture.supplyAsync(() -> {int i = 10/0;return "a";}).handleAsync((res,exception) -> {//不仅可以接收参数,而且可以返回结果if (res != null){return "值"+res;}if (exception != null){return "异常"+exception.getMessage();}return "0";},executors);System.out.println("获取返回结果:" + exceptionally.get());}public static class Runnable01 implements Runnable{@Overridepublic void run() {long start01 = System.currentTimeMillis();System.out.println("id============================");long id = Thread.currentThread().getId();System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide+"01-"+(System.currentTimeMillis() - start01));}}public static class Callable01 implements Callable<String> {@Overridepublic String call() {System.out.println("id============================");long id = Thread.currentThread().getId();System.out.println("当前线程的id = " + id);BigDecimal a = new BigDecimal(10);BigDecimal b = new BigDecimal(2);BigDecimal divide = a.divide(b);System.out.println("运行结果divide = " + divide);return divide.toString();}}
}

2.3线程的串行化的方法

2.3.1不能接收值且没有返回值

thenRun方法:只要上面的任务执行完成,就开始执行thenRun,只是处理完任务后,执行 thenRun的后续操作

    public CompletableFuture<Void> thenRun(Runnable action) {return uniRunStage(null, action);}public CompletableFuture<Void> thenRunAsync(Runnable action) {return uniRunStage(asyncPool, action);}public CompletableFuture<Void> thenRunAsync(Runnable action,Executor executor) {return uniRunStage(screenExecutor(executor), action);}

代码示例

package com.atguigu.gmall.product.completableFuture;import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;public class Test03 {public static ExecutorService excutor =Executors.newFixedThreadPool(10);public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFuture<Void> future01 = CompletableFuture.supplyAsync(() -> {int i = 0;System.out.println("i = " + i);return i;}).thenRunAsync(() -> {int j = 0;System.out.println("j = " + j);});Void unused = future01.get();System.out.println("unused = " + unused);}
}

2.3.2可以接收值但是没有返回值

thenAccept方法:消费处理结果。接收任务的处理结果,并消费处理,无返回结果。

    public CompletableFuture<Void> thenAccept(Consumer<? super T> action) {return uniAcceptStage(null, action);}public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action) {return uniAcceptStage(asyncPool, action);}public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action,Executor executor) {return uniAcceptStage(screenExecutor(executor), action);}

2.3.3可以接收值也可以返回值

thenApply 方法:当一个线程依赖另一个线程时,获取上一个任务返回的结果,并返回当前任务的返回值。

    public <U> CompletableFuture<U> thenApply(Function<? super T,? extends U> fn) {return uniApplyStage(null, fn);}public <U> CompletableFuture<U> thenApplyAsync(Function<? super T,? extends U> fn) {return uniApplyStage(asyncPool, fn);}public <U> CompletableFuture<U> thenApplyAsync(Function<? super T,? extends U> fn, Executor executor) {return uniApplyStage(screenExecutor(executor), fn);}

代码示例

package com.atguigu.gmall.product.completableFuture;import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;public class Test03 {public static ExecutorService excutor =Executors.newFixedThreadPool(10);public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFuture<Integer> future03 = CompletableFuture.supplyAsync(() -> {int i = 0;System.out.println("i = " + i);return i;}).thenApplyAsync((res) -> {res++;return res;});Integer integer = future03.get();System.out.println("integer = " + integer);}
}

带有Async默认是异步执行的。这里所谓的异步指的是不在当前线程内执行。

Function<? super T,? extends U>
T:上一个任务返回结果的类型
U:当前任务的返回值类型

2.4两任务组合-一个完成即可

2.5两任务组合-两个都要完成

2.6多任务组合

2.7查看商品详情实战

 @Autowiredprivate ThreadPoolExecutor executor;public Map<String, Object> getBySkuId(Long skuId) {Map<String, Object> result = new HashMap<>();//添加布隆过滤器 每次添加skuinfo信息的时候,都会把skuid放在布隆过滤器中,这样查询skuinfo时,// 首先进行检查是否通过布隆过滤器,通过说明在数据库中存在该数据。不通过说明数据库不存在该数据。// 布隆过滤器可以解决缓存穿透的问题。RBloomFilter<Object> bloomFilter = redissonClient.getBloomFilter(RedisConst.SKU_BLOOM_FILTER);if (!bloomFilter.contains(skuId)) return result;//添加异步任务 查询skuInfoCompletableFuture<SkuInfo> skuInfoCompletableFuture = CompletableFuture.supplyAsync(() -> {SkuInfo skuInfo = productFeignClient.getSkuInfo(skuId);if (skuInfo == null){return skuInfo;}result.put("skuInfo",skuInfo);return skuInfo;}, executor);//  获取分类数据CompletableFuture<Void> categoryViewCompletableFuture = skuInfoCompletableFuture.thenAcceptAsync((skuInfo) -> {BaseCategoryView categoryView = productFeignClient.getCategoryView(skuInfo.getCategory3Id());result.put("categoryView", categoryView);});//  获取销售属性+销售属性值CompletableFuture<Void> spuSaleAttrListCompletableFuture = skuInfoCompletableFuture.thenAcceptAsync((skuInfo -> {List<SpuSaleAttr> spuSaleAttrListCheckBySku = productFeignClient.getSpuSaleAttrListCheckBySku(skuId, skuInfo.getSpuId());result.put("spuSaleAttrList", spuSaleAttrListCheckBySku);}));//  查询销售属性值Id 与skuId 组合的mapCompletableFuture<Void> valuesSkuJsonCompletableFuture = skuInfoCompletableFuture.thenAcceptAsync(skuInfo -> {Map skuValueIdsMap = productFeignClient.getSkuValueIdsMap(skuInfo.getSpuId());//  将这个map 转换为页面需要的Json 对象String valueJson = JSON.toJSONString(skuValueIdsMap);result.put("valuesSkuJson", valueJson);});//  spu海报数据CompletableFuture<Void> spuPosterListCompletableFuture = skuInfoCompletableFuture.thenAcceptAsync(skuInfo -> {//  返回map 集合 Thymeleaf 渲染:能用map 存储数据!List<SpuPoster> spuPosterList = productFeignClient.getSpuPosterBySpuId(skuInfo.getSpuId());result.put("spuPosterList", spuPosterList);});//  获取价格CompletableFuture<Void> skuPriceCompletableFuture = CompletableFuture.runAsync(() -> {BigDecimal skuPrice = productFeignClient.getSkuPrice(skuId);//  map 中 key 对应的谁? Thymeleaf 获取数据的时候 ${skuInfo.skuName}result.put("price", skuPrice);});CompletableFuture<Void> skuAttrListCompletableFuture = CompletableFuture.runAsync(() -> {List<BaseAttrInfo> attrList = productFeignClient.getAttrList(skuId);//  使用拉姆达表示List<Map<String, String>> skuAttrList = attrList.stream().map((baseAttrInfo) -> {Map<String, String> attrMap = new HashMap<>();attrMap.put("attrName", baseAttrInfo.getAttrName());attrMap.put("attrValue", baseAttrInfo.getAttrValueList().get(0).getValueName());return attrMap;}).collect(Collectors.toList());result.put("skuAttrList", skuAttrList);});//阻塞主线程等待总的结果CompletableFuture<Void> future = CompletableFuture.allOf(skuInfoCompletableFuture, categoryViewCompletableFuture,spuSaleAttrListCompletableFuture, valuesSkuJsonCompletableFuture,spuPosterListCompletableFuture, skuPriceCompletableFuture,skuAttrListCompletableFuture);future.join();return result;}

修改之前
在这里插入图片描述
修改之后
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/25462.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java面向对象-[封装、继承、多态、权限修饰符]

Java面向对象-封装、继承、权限修饰符 一、封装1、案例12、案例2 二、继承1、案例12、总结 三、多态1、案例 四、权限修饰符1、private2、default3、protected4、public 一、封装 1、案例1 package com.msp_oop;public class Girl {private int age;public int getAge() {ret…

Redis系列-5 Redis分布式锁

背景&#xff1a; 本文介绍Redis分布式锁的内容&#xff0c;包括Redis相关命令和Lua脚本的介绍&#xff0c;以及操作分布式锁的流程与消息&#xff0c;最后结合Redission源码介绍分布式锁的实现原理。 1.基本命令 1.1 基本键值对的设置 设值: set key value 取值: get key …

SPI通信协议

SPI通信结介绍 W25Q64是一个Flash存储器芯片&#xff0c;内部可以存储8M字节的数据&#xff0c;并且是掉电不丢失的。 四根通信线&#xff1a;SCK&#xff08;Serial Clock&#xff09;串行时钟线、MOSI&#xff08;Master Output Slave Input&#xff09;主机输出从机输入、M…

【十大排序算法】快速排序

在乱序的世界中&#xff0c;快速排序如同一位智慧的园丁&#xff0c; 以轻盈的手法&#xff0c;将无序的花朵们重新安排&#xff0c; 在每一次比较中&#xff0c;沐浴着理性的阳光&#xff0c; 终使它们在有序的花园里&#xff0c;开出绚烂的芬芳。 文章目录 一、快速排序二、…

profile-3d-contrib,github三维立体图的使用

图片展示: 提示: 这个profile-3d-contrib存储库有时候会出现问题,导致又有使用这个存储库svg的用户显示出现问题. 参考: https://zhuanlan.zhihu.com/p/681786778 原仓库链接&#xff1a; GitHub - yoshi389111/github-profile-3d-contrib: This GitHub Action creates a Gi…

【算法刷题 | 动态规划08】6.9(单词拆分、打家劫舍、打家劫舍||)

文章目录 21.单词拆分21.1题目21.2解法&#xff1a;动规21.2.1动规思路21.2.2代码实现 22.打家劫舍22.1题目22.2解法&#xff1a;动规22.2.1动规思路22.2.2代码实现 23.打家劫舍||23.1题目23.2解法&#xff1a;动规23.2.1动规思路23.2.2代码实现 21.单词拆分 21.1题目 给你一…

java中的异常-异常处理(try、catch、finally、throw、throws)+自定义异常

一、概述 1、java程序员在编写程序时提前编写好对异常的处理程序&#xff0c;在程序发生异常时就可以执行预先设定好的处理程序&#xff0c;处理程序执行完之后&#xff0c;可以继续向后执行后面的程序 2、异常处理程序是在程序执行出现异常时才执行的 二、5个关键字 1、tr…

Redis实战篇02

1.分布式锁Redisson 简单介绍&#xff1a; 使用setnx可能会出现的极端问题&#xff1a; Redisson的简介&#xff1a; 简单的使用&#xff1a; 业务代码的改造&#xff1a; private void handleVoucherOrder(VoucherOrder voucherOrder) {Long userId voucherOrder.getUserI…

2024真机项目

项目需求&#xff1a; 1. 172.25.250.101 主机上的 Web 服务要求提供 www.exam.com 加密站点&#xff0c;该站点在任何路由可达 的主机上被访问&#xff0c;页面内容显示为 "Hello&#xff0c;Welcome to www.exam.com !"&#xff0c;并提供 content.exam.com/yum/A…

数据:人工智能的基石 | Scale AI 创始人兼 CEO 亚历山大·王的创业故事与行业洞见

引言 在人工智能领域&#xff0c;数据被誉为“新石油”&#xff0c;其重要性不言而喻。随着GPT-4的问世&#xff0c;AI技术迎来了新的浪潮。众多年轻创业者纷纷投身这一领域&#xff0c;Scale AI的创始人兼CEO亚历山大王&#xff08;Alexander Wang&#xff09;就是其中的佼佼…

什么是Java?

什么是Java&#xff1f;java是什么&#xff1f;下面我们来总结一下。 java是什么&#xff1f; java是一个静态编程语言&#xff0c;具有强大的多线程特征&#xff0c;目前java不仅采用c语言的优点&#xff0c;还去掉了一些多继承指针&#xff0c;等复杂的概念&#xff0c;我们…

Git配置 安装及使用

团队开发的神 找工作必备 环境变量 配置好环境后 打开终端环境 winr cmd 我习惯在桌面打开&#xff0c;然后进入相应的文件夹 &#xff08;文件夹结构&#xff09; &#xff08;个人感觉能用cmd不用git&#xff0c;cmd更好用一些&#xff09; 进入对应的文件夹 填写自己对…

docker安装rabbitmq详解

目录 1、安装 1-1.查看rabbitmq镜像 1-2.下载Rabbitmq的镜像 1-3.创建并运行rabbitmq容器 1-4.查看启动情况 1-5.启动web客户端 1-6.访问rabbitmq的客户端 2..遇到的问题 解决方法: 1、安装 1-1.查看rabbitmq镜像 docker search rabbitmq 1-2.下载Rabbitmq的镜像 拉…

国标GB/T 28181详解:校时流程详细说明

目录 一、定义 二、作用 1. 时间同步性 2. 事件记录的准确性 3. 跨平台、跨设备协作 4. 降低时间误差 5. 安全性提升 三、基本要求 四、命令流程 五、协议接口 六、校时效果 1、未校时的情况 2、校时后的效果 七、参考 一、定义 GB28181协议要求所有的监控设…

python后端结合uniapp与uview组件tabs,实现自定义导航按钮与小标签颜色控制

实现效果&#xff08;红框内&#xff09;&#xff1a; 后端api如下&#xff1a; task_api.route(/user/task/states_list, methods[POST, GET]) visitor_token_required def task_states(user):name_list [待接单, 设计中, 交付中, 已完成, 全部]data []color [#F04864, …

CPP初阶:CPP的内存管理模式

目录 一.new和delete操作自定义类型 1.1C语言的内存管理 1.2CPP的内存管理方式 1.3C与CPP内存管理的差异 二.operator new和operator delete函数 三.CPP空间操作符使用深化 3.1 连续内存开辟与释放 3.2 非连续内存开辟与释放 四.new和delete的实现原理 4.1内置类型 4.2…

100道面试必会算法-32-二叉树右视图用栈实现队列

100道面试必会算法-32-二叉树右视图&用栈实现队列 给定一个二叉树的 根节点 root&#xff0c;想象自己站在它的右侧&#xff0c;按照从顶部到底部的顺序&#xff0c;返回从右侧所能看到的节点值。 示例 1: 输入: [1,2,3,null,5,null,4] 输出: [1,3,4]示例 2: 输入: [1,n…

【内网攻防实战】红日靶场(一)续篇_金票与银票

红日靶场&#xff08;一&#xff09;续篇_权限维持 前情提要当前位置执行目标 PsExec.exe拿下域控2008rdesktop 远程登录win7msf上传文件kail回连马连上win7upload上传PsExec.exe PsExec.exe把win7 带到 2008&#xff08;域控hostname&#xff1a;owa)2008开远程、关防火墙Win7…

OpenCV绘制直线

一 绘制图形 画线 画矩形 画圆 画椭圆 画多边形 绘制字体 二 画线 line(img,开始点&#xff0c;结束点&#xff0c;颜色…) 参数结束 img&#xff1a;在那个图像上画线 开始点,结束点&#xff1a;指定线的开始与结束位置&#xff1b; 颜色&#xff0c;线宽&#xff0c;线体…

Linux系统编程(十二)线程同步、锁、条件变量、信号量

线程同步&#xff1a; 协同步调&#xff0c;对公共区域数据按序访问。防止数据混乱&#xff0c;产生与时间有关的错误。数据混乱的原因 一、互斥锁/互斥量mutex 1. 建议锁&#xff08;协同锁&#xff09;&#xff1a; 公共数据进行保护。所有线程【应该】在访问公共数据前先拿…