浅谈java.util.concurrent包的并发处理(一)

系统 1670 0

 
 

我们都知道,在JDK1.5之前,Java中要进行业务并发时,通常需要有程序员独立完成代码实现,而当针对高质量Java多线程并发程序设计时,为防止死蹦等现象的出现,比如使用java之前的wait()、notify()和synchronized等,每每需要考虑性能、死锁、公平性、资源管理以及如何避免线程安全性方面带来的危害等诸多因素,往往会采用一些较为复杂的安全策略,加重了程序员的开发负担.万幸的是,在JDK1.5出现之后,Sun大神终于为我们这些可怜的小程序员推出了java.util.concurrent工具包以简化并发完成。开发者们借助于此,将有效的减少竞争条件(race conditions)和死锁线程。concurrent包很好的解决了这些问题,为我们提供了更实用的并发程序模型。


java.util.concurrent下主要的接口和类:

Executor:具体Runnable任务的执行者。

ExecutorService:一个线程池管理者,其实现类有多种,比如普通线程池,定时调度线程池ScheduledExecutorService等,我们能把一个

Runnable,Callable提交到池中让其调度。

Future:是与Runnable,Callable进行交互的接口,比如一个线程执行结束后取返回的结果等等,还提供了cancel终止线程。

BlockingQueue:阻塞队列。

下面我写一个简单的事例程序:

FutureProxy .java

package  org.test.concurrent;
/** */ /**
 * <p>Title: LoonFramework</p>
 * <p>Description:利用Future模式进行处理</p>
 * <p>Copyright: Copyright (c) 2007</p>
 * <p>Company: LoonFramework</p>
 * 
@author  chenpeng  
 * @email:ceponline@yahoo.com.cn 
 * 
@version  0.1
 
*/

import  java.lang.reflect.InvocationHandler;
import  java.lang.reflect.Method;
import  java.lang.reflect.Proxy;
import  java.util.concurrent.Callable;
import  java.util.concurrent.ExecutorService;
import  java.util.concurrent.Executors;
import  java.util.concurrent.Future;
import  java.util.concurrent.ThreadFactory;

public   abstract   class  FutureProxy < T >   ... {

    
private   final   class  CallableImpl  implements  Callable < T >   ... {

        
public  T call()  throws  Exception  ... {
            
return  FutureProxy. this .createInstance();
        }

    }


    
private   static   class  InvocationHandlerImpl < T >   implements  InvocationHandler  ... {

        
private  Future < T >  future;
        
        
private   volatile  T instance;
        
        InvocationHandlerImpl(Future
< T >  future) ... {
            
this .future  =  future;
        }

        
        
public  Object invoke(Object proxy, Method method, Object[] args)
                
throws  Throwable  ... {
            
synchronized ( this ) ... {
                
if ( this .future.isDone()) ... {
                    
this .instance  =   this .future.get();
                }
else ... {
                    
while ( ! this .future.isDone()) ... {
                        
try ... {
                            
this .instance  =   this .future.get();
                        }
catch (InterruptedException e) ... {
                            Thread.currentThread().interrupt();
                        }

                    }

                }

                
                
return  method.invoke( this .instance, args);
            }

        }

    }


    
/** */ /**
     * 实现java.util.concurrent.ThreadFactory接口
     * 
@author  chenpeng
     *
     
*/

    
private   static   final   class  ThreadFactoryImpl  implements  ThreadFactory  ... {

        
public  Thread newThread(Runnable r)  ... {
            Thread thread 
=   new  Thread(r);
            thread.setDaemon(
true );
            
return  thread;
        }

    }


    
private   static  ExecutorService service  =  Executors.newCachedThreadPool( new  ThreadFactoryImpl());

    
protected   abstract  T createInstance();

    
protected   abstract  Class <?   extends  T >  getInterface();
    
    
/** */ /**
     * 返回代理的实例
     * 
@return
     
*/

    @SuppressWarnings(
" unchecked " )
    
public   final  T getProxyInstance()  ... {
        Class
<?   extends  T >  interfaceClass  =   this .getInterface();
        
if  (interfaceClass  ==   null   ||   ! interfaceClass.isInterface())  ... {
            
throw   new  IllegalStateException();
        }


        Callable
< T >  task  =   new  CallableImpl();

        Future
< T >  future  =  FutureProxy.service.submit(task);

        
return  (T) Proxy.newProxyInstance(interfaceClass.getClassLoader(),
                
new  Class <?> []  ... { interfaceClass } new  InvocationHandlerImpl(future));
    }

}


浅谈java.util.concurrent包的并发处理(一)


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论