版本: Unity 6 (6000.0)
语言English
  • C#

DictionaryPool<T0,T1>

UnityEngine.Pool 中的类

/

继承自:Pool.CollectionPool_2

/

实现于:UnityEngine.CoreModule

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法采纳所有提交内容,但我们会阅读用户提出的每个建议更改,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

字典版本的 CollectionPool<T0,T1>

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); } }

继承成员

静态方法

Get从池中获取实例。如果池为空,则会创建一个新实例。
Release将实例返回到池中。