Most visited

Recently visited

Pools.Pool

public static interface Pools.Pool

android.support.v4.util.Pools.Pool<T>
Known Indirect Subclasses


管理对象池的界面。

Summary

Public methods

abstract T acquire()
abstract boolean release(T instance)

将实例释放到池中。

Public methods

acquire

T acquire ()

Returns
T An instance from the pool if such, null otherwise.

release

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.

Hooray!