Please enable JavaScript.
Coggle requires JavaScript to display documents.
A Tour of C++ - Coggle Diagram
A Tour of C++
Program
-
-
-
-
-
-
-
Hello, World!
-
int main( ) {..}
Function
Declare
-
- Function Name
- Parameter Type
- Parameter Name :memo: Optional
-
파라미터 타입 검사/변환
-
Type
Declaration
-
Definition
Modularization
- 4 more items...
-
-
- 메모리에는 값이 존재한다.
- 값을 가지고 수행할 수 있는 (저마다의) 연산이 있다.
- 그러한 연산특성을 명시적으로 정의한다.
Object
-
-
Scope
Local Scope
- 1 more item...
Namespace Scope
- 1 more item...
Class Scope
- 1 more item...
Life Cycle
- 1 more item...
Constant
-
-
constexpr
- 2 more items...
-
-
-
내장타입
The Base Types
-
-
-
-
-
-
Arithmetic Calculation
- 5 more items...
Initialization
- 4 more items...
-
-
-
-
-
-