Ben Saks
Modern C++ Interface Design
Status: Available NowPrerequisite: Solid knowledge of C, C++ classes, and traditional C enumeration types, as well as a basic understanding of simple C++ templates.
Good interface design is an important part of writing safe, reliable software. By writing interfaces that are easy to use correctly, we let software engineers communicate clearly and reduce maintenance costs. By using the type system to write interfaces that are hard to use incorrectly, we can catch many potential errors at compile time and improve development time.
In this session, we’ll take an existing C++ interface and look at how we can improve on it using Modern C++ features. We’ll see how Modern C++ lets you write enumeration types that avoid common problems and misuses. We’ll discuss new library types and language features that help you write interfaces with more convenient parameter passing and return conventions. We’ll also examine how you can use C++ attributes like [[nodiscard]] to get more feedback from your compiler and catch mistakes earlier in development.
- scoped enumerations and underlying type specifiers
- explicit conversion operators
- attributes (e.g., [[deprecated]], [[nodiscard]], [[fallthrough]], etc.)
- structured bindings
- std::optional
- std::expected
Compile-Time Programming in C++ Using Constexpr
Status: Available NowPrerequisite: Solid knowledge of the C, as well as the fundamentals of C++ classes, constructors, and the const qualifier.
C++’s constexpr qualifier is a powerful tool for writing “constant expressions” — that is, expressions that can be computed at compile time. These constant expressions have several advantages over non-constant expressions, particularly for embedded systems. Objects with values that are constant expressions can be placed in ROM (read-only memory), and can be used as array dimensions, case labels, and enumerator initializers. Moreover, code that uses constant expressions is generally smaller and faster than similar code that uses non-constant expressions.
In this session, we’ll look at how you can use the constexpr qualifier to write functions that yield constant expressions. We’ll examine the differences between const and constexpr objects and see why const objects don’t necessarily qualify as constant expressions. We’ll also discuss the related C++20 keywords consteval and constinit and see how they fit into the picture.
This session covers:
- A review of the fundamentals of const
- constexpr functions
- constexpr objects
- consteval functions
- constinit objects
Live Q&A - Compile-Time Programming in C++ Using Constexpr
Status: Available NowLive Q&A with Ben Saks for the talk titled Compile-Time Programming in C++ Using Constexpr