- Objective-C Memory Management Essentials
- Gibson Tang Maxim Vasilkov
- 192字
- 2021-07-23 20:09:10
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "When you do a new
, malloc
, or alloc
, what the operating system does is that it is giving your program a chunk of memory on the heap."
A block of code is set as follows:
int main(int argc, char *argv[]) { SomeObject *myOwnObject; // myOwnObject is created in main myOwnObject = [[SomeObject alloc] init]; // myOwnObject can be used by other objects [anotherObject using:myOwnObject];
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "In Xcode, go to the target Build Phases tab, open the Compile Sources group, and you will be able to see the source file list."
- Android Wearable Programming
- 深入淺出Prometheus:原理、應用、源碼與拓展詳解
- Java Web及其框架技術
- Web Application Development with MEAN
- Python完全自學教程
- Learning Python by Building Games
- Python時間序列預測
- Learning Salesforce Einstein
- Kotlin編程實戰:創建優雅、富于表現力和高性能的JVM與Android應用程序
- Unity 2017 Mobile Game Development
- OpenGL Data Visualization Cookbook
- 軟件測試綜合技術
- 軟件工程與UML案例解析(第三版)
- SFML Game Development
- Extending Docker