TArray.AddZeroed
时间: 2023-10-09 12:11:19 浏览: 66
TArray:Tcl 的类型化数组-开源
TArray.AddZeroed 是一种在 Unreal Engine 4 中使用的函数,用于向数组中添加指定数量的默认值为零的元素。这个函数会向数组末尾添加新元素,并将它们初始化为默认值为零。它的语法如下:
```
template<typename Allocator>
void AddZeroed(int32 Count = 1, Allocator Allocator = FDefaultAllocator());
```
其中,Count 参数指定要添加的元素数量,Allocator 参数指定要使用的内存分配器。
阅读全文