Skip to content

Smart Pointer Library UE4

Custom implementation of C++11 smart pointer design These classes cannot be used with the UObject system. Unreal Smart Pointer Library is only available for Game Code. see : docs.unrealengine.com/SmartPointerLibrary

TypeDesc
TSharedPtrOwns the object it references, preventing deletion, can be empty, if non-null can produce a shared reference.
TSharedRefActs like sharedptr, always referenced a non null object, can always be a sharedptr
TWeakPtrSimilar to SharedPtr, but don't own the object they reference and not affect its lifecycle. Very useful as it breaks reference cycles, can become null at any time, can produce a Shared Pointer.
TUniquePtrOwns the object it references, can only be one Unique Pointer to a given resource, Unique Pointers can transfer ownership, but cannot share it. Any attempts to copy a Unique Pointer will result in a compile error. When a Unique Pointer is goes out of scope, it will automatically delete the object it references.

Size of smart pointer library

Smart Pointers are only twice the size of a C++ pointer in 64-bit (plus a shared 16-byte reference controller). The exception to this is Unique Pointers, which are the same size as C++ pointers.

Example

Todo