- The Modern C++ Challenge
- Marius Bancila
- 141字
- 2021-06-25 22:01:20
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Mount the downloaded WebStorm-10*.dmg disk image file as another disk in your system."
A block of code is set as follows:
int main()
{
std::cout << "Hello, World!\n";
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
template<typename C, typename... Args>
void push_back(C& c, Args&&... args)
{
(c.push_back(args), ...);
}
Any command-line input or output is written as follows:
$ mkdir build
$ cd build
Bold: Indicates a new term, an important word, or words that you see onscreen. 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."
Warnings or important notes appear like this.
Tips and tricks appear like this.
- Cocos2d Cross-Platform Game Development Cookbook(Second Edition)
- DevOps with Kubernetes
- Android項目開發(fā)入門教程
- TypeScript Blueprints
- C語言程序設(shè)計(第3版)
- SQL語言從入門到精通
- Practical Windows Forensics
- 數(shù)據(jù)結(jié)構(gòu)(C語言)
- The DevOps 2.4 Toolkit
- TradeStation交易應(yīng)用實踐:量化方法構(gòu)建贏家策略(原書第2版)
- 微信小程序項目開發(fā)實戰(zhàn)
- 響應(yīng)式架構(gòu):消息模式Actor實現(xiàn)與Scala、Akka應(yīng)用集成
- Python程序設(shè)計與算法基礎(chǔ)教程(第2版)(微課版)
- Web前端開發(fā)最佳實踐
- 軟件測試技術(shù)