C++ Links: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Claas (Diskussion | Beiträge) (→Methods / Patterns: expression problem]) |
|||
Zeile 57: | Zeile 57: | ||
* [http://www.bfilipek.com/2018/01/pimpl.html The Pimpl Pattern - what you should know] | * [http://www.bfilipek.com/2018/01/pimpl.html The Pimpl Pattern - what you should know] | ||
* [https://www.fluentcpp.com/2016/12/15/respect-levels-of-abstraction/ It all comes down to respecting levels of abstraction] | * [https://www.fluentcpp.com/2016/12/15/respect-levels-of-abstraction/ It all comes down to respecting levels of abstraction] | ||
* [https://eli.thegreenplace.net/2016/the-expression-problem-and-its-solutions/ The expression problem] | |||
== Optimization == | == Optimization == |
Version vom 12. Juni 2018, 12:15 Uhr
Concurrency
Exceptions and Transactional Operations
Containers
Tuples
Variants
- Polymorphism using variant
- Visiting variants using lambdas
- Polymorphism-polymorphism
- The two line visitor explained
Boost Multiindex
Iterators
Functional Programming
Types
Random
Metaprogramming
- Size of an array (another way)
- static_if
- Deep copy using a polymorphic wrapper
- A customizable framework
- Zero overhead currying
CRTP
Covariance, Contravariance, Invariance
Lambdas
- Composing Lambdas in C++14 -- and Functions
- Capturing perfectly-forwarded objects in lambdas
- Fun with lambdas (part 1)
Methods / Patterns
- The Pimpl Pattern - what you should know
- It all comes down to respecting levels of abstraction
- The expression problem