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

HashSetPool<T0>

UnityEngine.Pool 中的类

/

继承自: Pool.CollectionPool_2

/

实现于: UnityEngine.CoreModule

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每项建议,并在适用时进行更新。

关闭

提交失败

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

关闭

取消

描述

一个 CollectionPool<T0,T1> 的 HashSet 版本。

using UnityEngine.Pool;

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

// Use the HashSet

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

继承的成员

静态方法

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