about
Bits Data C++
11/25/2023
0
Bits: C++ Data Types
types, initialization, construction, assignment
Synopsis:
Most of a language's syntax and semantics derives directly from its type system design. This is true of all of the languages discussed in these Bits: C++, Rust, C#, Python, and JavaScript. C++ has a complex type system, followed in order by C#, Rust, JavaScript, and Python. We will spend more time with this Bit than with all of the others because of its complexities and importance. This page demonstrates simple uses of the most important C++ types. The purpose is to quickly acquire some familiarity with types and their uses.- Primitive types and aggregates of primitive types are copyable. Assignment and pass-by-value copies the source's value to the destination.
- For user-defined types C++ provides special class methods - constructors, operators, and destructors. When properly implemented they provide instance syntax that mimics that of primitives. We won't see that here, but will in the next Bit page.
- C++ supports move operations with move constructor and move assignment operator. temporaries are moved when assigned or passed-by-value to the destination using the resources of the move source. This is a transfer of ownership and makes the source invalid. Attempting to use a "moved" variable is, unfortunately, not a compile error.
- C++ supports making fixed references to either primitive or user-defined types. These may refer to instances in stack memory, static memory, or in the native heap.
- C++ pointers and references are un-constrained and a frequent source of memory management errors. By convention these can be avoided by using range-based for loops and smart pointers. For very large code bases it can be challenging to insure that the conventions have been followed everywhere - think of projects with 100,000 source lines or more.
- Here we begin to see significant differences between the languages, especially when comparing statically typed languages like C++, Rust, and C#, with dynamically typed languages like Python and JavaScript.
C++ Types Details
Table 1.0 C++ Types
Type | Comments | Example |
---|---|---|
-- Integral types ---- | ||
values true and false | ||
with signed, unsigned, short, long qualifiers |
1 == sizeof(char) ≤ sizeof(short) ≤ sizeof(int) ≤ sizeof(long) ≤ sizeof(long long) | |
|
||
with signed and unsigned qualifiers |
signedness of |
|
|
wchar_t is 16 bits and holds UTF-16 code units on Windows, 32 bits and holds UTF-32 on Linux | |
-- Floating point types ---- | ||
values have finite precision, and may have approximate values | ||
-- literal string types -- | ||
literal string, resides in static memory and is always null terminated. "Hello" is a const char[6] containing the chars: 'H', 'e', 'l', 'l', 'o', '\0'. |
|
|
-- Aggregate types ---- | ||
Native array of N elements all of type |
let first = arr[0]; |
|
collection of heterogeneous types accessed by position |
char third = get<2>(tu); |
|
std::optional holds optional value |
||
-- Std::library types ---- | ||
Expandable collection of ASCII characters allocated in the heap | ||
Expandable collection of Unicode characters allocated in the heap | ||
Fixed size generic array of items of type |
||
Expandable generic collection of items of type |
||
Expandable double-ended generic collection of items of type |
v.push_front(-1); ... |
|
Unordered associative container of Key-Value pairs, held in a table of bucket lists. |
map.insert("zero", 0); ... |
|
Ordered associative container of Key-Value pairs, held in binary tree. |
map.insert("zero", 0); ... |
|
forward_list, list, unordered_map, unordered_set, unordered_multimap, unordered_multiset, set, multiset, and several adapters like stack and queue | The C++ std::library also defines types for threading and synchronization, reading and writing to streams, anonymous functions, and many more. | Containers library |
-- User-defined Types -- | ||
User-defined types | Based on classes and structs, these will be discussed in the next Bit. |
C++ Type System Details
Table 2. C++ Copy and Move Operations
Operation | Example | Primitive or Aggregate of Primitives | Library or User-defined Type |
---|---|---|---|
If uεT is a named variable | |||
Construction | |||
Assignment | |||
Pass-by-value | using |
||
If uεT is a temporary or u = std::move(v), vεT | |||
Construction | |||
Assignment | |||
Pass-by-value |
Table 3. C++ Type System Attributes
Static typing | All types are known at compile time and are fixed throughout program execution. |
Inference |
Compiler infers types in expressions if not explicitly annotated or if declared |
Intermediate strength typing |
Types are exhaustively checked but there are many implicit conversions.
|
Generics |
Generics provide types and functions with unspecified parameters,
supporting code reuse and abstraction
over types. Generic parameters are specified at the call site, e.g., |
Class Relationships |
Class relationships are important tools for modeling both application and implementation
domains.
|
Concepts | Concepts are similar to Rust traits and Java and C# interfaces. They define shared behavior that types can implement, supporting abstraction over behavior. Concepts define behavior by declaring concept specific functions. A template type can use a Requires clause with concept arguments to bound types that are valid for a class or function. |
1.0 Initialization
1.1 Primitives
Output
1.2 Aggregates
Output
1.3 Std::library Types
Output
1.4 Heap Storage
Output
2.0 Copy Operations
2.1 Copy Operations for Primitives
Output
2.2 Copy Operations for Std::library Types
Output
3.0 Move Operations
Move std::string
Output
4.0 Pass-by-value & Pass-by-reference
Output
5.0 Display Functions
Display Functions
functions for converting scalars and collections to strings. |
a formatOutput function accepting an object and one of the converter functions. |
That function returns a formatted string representing the first argument. |
The first code block also shows a function used to format pointer addresses for display. |
|
|
6.0 Build
where the executable name, here CppData.exe, is defined in CMakeLists.txt.
6.1 CMakeLists.txt
7.0 VS Code View
8.0 References
Reference | Description |
---|---|
C++ Story | E-book with thirteen chapters covering most of intermediate C++ |
C++ Bites | Relatively short feature discussions |