ObjectPool 对象池程序

这就是传说中的对象池, 位于 JDK 的源代码中. 原始包名忘了, 反正是修改自 JDK 源码. 用法就不多说了, 看看函数名都能想的出来. 测试结果好像是要比来回 NEW 对象好的多.

import java.util.Vector;


/**
* <meta name="usage" content="internal"/>
* Pool of object of a given type to pick from to help memory usage
*/
public class ObjectPool implements java.io.Serializable
{

/** Type of objects in this pool.
* @serial */
private final Class objectType;

/** Vector of given objects this points to.
* @serial */
private final Vector freeStack;

/**
* Constructor ObjectPool
*
* @param type Type of objects for this pool
*/
public ObjectPool(Class type)
{
objectType = type;
freeStack = new Vector();
}

/**
* Constructor ObjectPool
*
* @param className Fully qualified name of the type of objects for this pool.
*/
public ObjectPool(String className)
{
try
{
objectType = Class.forName(className);
}
catch (ClassNotFoundException cnfe)
{
throw new RuntimeException(cnfe);
}
freeStack = new Vector();
}


/**
* Constructor ObjectPool
*
*
* @param type Type of objects for this pool
* @param size Size of vector to allocate
*/
public ObjectPool(Class type, int size)
{
objectType = type;
freeStack = new Vector(size);
}

/**
* Constructor ObjectPool
*
*/
public ObjectPool()
{
objectType = null ;
freeStack = new Vector();
}

/**
* Get an instance of the given object in this pool if available
*
*
* @return an instance of the given object if available or null
*/
public synchronized Object getInstanceIfFree()
{

// Check if the pool is empty.
if (!freeStack.isEmpty())
{

// Remove object from end of free pool.
Object result = freeStack.lastElement();

freeStack.setSize(freeStack.size() - 1);

return result;
}

return null ;
}

/**
* Get an instance of the given object in this pool
*
*
* @return An instance of the given object
*/
public synchronized Object getInstance()
{

// Check if the pool is empty.
if (freeStack.isEmpty())
{

// Create a new object if so.
try
{
return objectType.newInstance();
}
catch (InstantiationException ex){}
catch (IllegalAccessException ex){}

// Throw unchecked exception for error in pool configuration.
throw new RuntimeException("exception creating new instance for pool" , null ); //"exception creating new instance for pool");
}
else
{

// Remove object from end of free pool.
Object result = freeStack.lastElement();

freeStack.setSize(freeStack.size() - 1);

return result;
}
}

/**
* Add an instance of the given object to the pool
*
*
* @param obj Object to add.
*/
public synchronized void freeInstance(Object obj)
{

// Make sure the object is of the correct type.
// Remove safety. -sb
// if (objectType.isInstance(obj))
// {
freeStack.addElement(obj);
// }
// else
// {
// throw new IllegalArgumentException("argument type invalid for pool");
// }
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值