- 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."
- JavaScript前端開發模塊化教程
- Mastering JavaScript Object-Oriented Programming
- ASP.NET Core 5.0開發入門與實戰
- AIRAndroid應用開發實戰
- Essential Angular
- UI智能化與前端智能化:工程技術、實現方法與編程思想
- 零基礎趣學C語言
- 從Java到Web程序設計教程
- 零基礎學Kotlin之Android項目開發實戰
- ExtJS Web應用程序開發指南第2版
- 從程序員角度學習數據庫技術(藍橋杯軟件大賽培訓教材-Java方向)
- ABAQUS6.14中文版有限元分析與實例詳解
- Test-Driven iOS Development with Swift
- Java面試一戰到底(基礎卷)
- 軟技能2:軟件開發者職業生涯指南