condition
-
从【if…else…】到【责任链】再到【composeAOP】,顺带把【传参】解决了~
嵌套毛毛虫 我猜你一定见过这样的代码: if(condition1 === A1){ if(condition2 === A2){ … }else if(condition2 …
-
python线程中Condition的原理
,原理分析,1、Python条件变量Condition需要关联互斥锁,同时Condition本身提供了wait、notify、notifyAll方法。,2、用于阻塞、通知其他并行线…