[ C++ : push_back()과 emplace_back(), Add()와 Emplace() ] C++의 vector에서 push_back() 대신에 emplace_back()를 쓰라는 말이 종종 있다.이것은 UE5 C++에서 TArray에도 공유되는 개념인데, TArray의 공식문서에서 다음과 같이 설명하고 있다. [ UE5 C++ : TArray Document ]The array's allocator provides memory as needed when new elements are added to the array. The default allocator adds enough memory for multiple new elements whenever the current array size ..