- Mastering C++ Programming
- Jeganathan Swaminathan
- 246字
- 2021-07-02 18:28:44
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: "The initialize() method initializes the deque iterator pos to the first data element stored within deque."
A block of code is set as follows:
#include <iostream>
int main ( ) {
const int x = 5, y = 5;
static_assert ( 1 == 0, "Assertion failed" );
static_assert ( 1 == 0 );
static_assert ( x == y );
return 0;
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
#include <iostream>
#include <thread>
#include <mutex>
#include "Account.h"
using namespace std;
enum ThreadType {
DEPOSITOR,
WITHDRAWER
};
mutex locker;
Any command-line input or output is written as follows:
g++ main.cpp -std=c++17
./a.out
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: " You need to create a new project named MathApp by navigating to New Project | Visual Studio | Windows | Win32 | Win32 Console Application."
- C++程序設計教程
- 深度實踐OpenStack:基于Python的OpenStack組件開發
- Unreal Engine Physics Essentials
- C程序設計簡明教程(第二版)
- 基于Java技術的Web應用開發
- INSTANT Adobe Edge Inspect Starter
- 小型編譯器設計實踐
- Hadoop大數據分析技術
- C編程技巧:117個問題解決方案示例
- 網絡數據采集技術:Java網絡爬蟲實戰
- Julia數據科學應用
- 進入IT企業必讀的324個Java面試題
- SAP Web Dynpro for ABAP開發技術詳解:基礎應用
- 深入理解Kafka:核心設計與實踐原理
- Java 7 Concurrency Cookbook