書名: Unreal Engine 4 Scripting with C++ Cookbook作者名: William Sherif Stephen Whittle本章字數: 87字更新時間: 2021-07-08 10:50:49
Chapter 3. Memory Management and Smart Pointers
In this chapter, we are going to cover the following topics:
- Unmanaged memory – using
malloc()
/free()
- Unmanaged memory – using
new
/delete
- Managed memory – using
NewObject< >
andConstructObject< >
- Managed memory – deallocating memory
- Managed memory – smart pointers (
TSharedPtr
,TWeakPtr
,TAutoPtr
) to track an object - Using
TScopedPointer
to track an object - Unreal's garbage collection system and
UPROPERTY()
- Forcing garbage collection
- Breakpoints and stepping through code
- Finding bugs and using call stacks
- Using the Profiler to identify hot spots
推薦閱讀
- Python爬蟲開發與項目實戰
- HTML5+CSS3網站設計教程
- Python機器學習經典實例
- Oracle Exadata專家手冊
- 大數據分析與應用實戰:統計機器學習之數據導向編程
- Android系統級深入開發
- INSTANT Yii 1.1 Application Development Starter
- Unity Character Animation with Mecanim
- Python期貨量化交易實戰
- Unity 2017 Game AI Programming(Third Edition)
- 奔跑吧 Linux內核
- C Primer Plus(第6版)中文版【最新修訂版】
- RESTful Web API Design with Node.js
- Java EE 程序設計
- C語言學習手冊