Unity GetComponent相关性能比较结论

2,951 阅读1分钟

测试结论

GetComponent<>();泛型性能最好,

GetComponent(typeof()); 稍次

GetComponent(string); 性能最差,和前两个有巨大的差距

GetComponent相关方法会增大CPU开销,但不会有GC。只有在Editor模式下,如果GetComponent结果为null会产生GC。
原因: Editor会做更多检测来保证程序的正常运行,当找不到该组件时,会内部生成警告字符串,从而造成了堆内存的分配。

如果频繁调用GetComponent会造成显著的CPU开销提升,所以需要使用缓存。

示例:每一帧执行Test脚本的Print()方法。
优化前:
void Update()
{
    this.gameObject.GetComponent<Test>().Print();
}

优化后:
private Test test;

void Start()
{
    test = this.gameObject.GetComponent<Test>();
}

void Update()
{
    test.Print();
}