Version: 2022.3

DictionaryPool<T0,T1>

class in UnityEngine.Pool

/

继承自:Pool.CollectionPool_2

切换到手册

描述

A version of CollectionPool<T0,T1> for Dictionaries.

using UnityEngine.Pool;

public class Example { void GetPooled() { // Get a pooled instance var instance = DictionaryPool<int, int>.Get();

// Use the Dictionary

// Return it back to the pool DictionaryPool<int, int>.Release(instance); } }

继承的成员

静态函数

GetGet an instance from the pool. If the pool is empty then a new instance will be created.
ReleaseReturns the instance back to the pool.