- Hands-On System Programming with C++
- Dr. Rian Quinn
- 177字
- 2021-07-02 14:42:26
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "For example, look at the difference between using an std::array{} or a std::vector{} command."
A block of code is set as follows:
int array[10];
auto r1 = array + 1;
auto r2 = *(array + 1);
auto r3 = array[1];
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
int main()
{
auto ptr1 = mmap_unique_server<int>(42);
auto ptr2 = mmap_unique_client<int>();
std::cout << *ptr1 << '\n';
std::cout << *ptr2 << '\n';
}
Any command-line input or output is written as follows:
> cmake -DCMAKE_BUILD_TYPE=Release ..
> make
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select System info from the Administration panel."
- 計(jì)算機(jī)綜合設(shè)計(jì)實(shí)驗(yàn)指導(dǎo)
- Mastering Ninject for Dependency Injection
- Python數(shù)據(jù)分析入門:從數(shù)據(jù)獲取到可視化
- 業(yè)務(wù)數(shù)據(jù)分析:五招破解業(yè)務(wù)難題
- 一個(gè)64位操作系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)
- MATLAB Graphics and Data Visualization Cookbook
- 深入淺出Greenplum分布式數(shù)據(jù)庫(kù):原理、架構(gòu)和代碼分析
- Apache Kylin權(quán)威指南
- PostgreSQL指南:內(nèi)幕探索
- Hadoop集群與安全
- AndEngine for Android Game Development Cookbook
- 企業(yè)級(jí)大數(shù)據(jù)項(xiàng)目實(shí)戰(zhàn):用戶搜索行為分析系統(tǒng)從0到1
- 數(shù)據(jù)挖掘與數(shù)據(jù)化運(yùn)營(yíng)實(shí)戰(zhàn):思路、方法、技巧與應(yīng)用
- SQL Server 數(shù)據(jù)庫(kù)教程(2008版)
- 數(shù)據(jù)可視化五部曲