public static interface Pools.Pool
| android.support.v4.util.Pools.Pool<T> |
| |
管理对象池的界面。
公共方法(Public methods) |
|
|---|---|
abstract T |
acquire() |
abstract boolean |
release(T instance) 将实例释放到池中。 |
T acquire ()
| 返回(Returns) | |
|---|---|
T |
An instance from the pool if such, null otherwise. |
boolean release (T instance)
将实例释放到池中。
| 参数(Parameters) | |
|---|---|
instance |
T: The instance to release. |
| 返回(Returns) | |
|---|---|
boolean |
Whether the instance was put in the pool. |
| 抛出异常(Throws) | |
|---|---|
IllegalStateException |
If the instance is already in the pool. |