- Hands-On Embedded Programming with C++17
- Maya Posch
- 251字
- 2021-08-20 10:20:45
C++ language features
We previously took a look at the explicit nature of changes to data and system state that defines imperative programming as opposed to declarative programming, where instead of manipulating data in a loop such functionality could be declared as mapping an operator to some data, thus spelling out the functionality, not the specific order of operations. But why should programming languages necessarily be a choice between imperative and declarative paradigms?
In fact, one of the main distinguishing features of C++ is its multi-paradigm nature making use of both imperative and declarative paradigms. With the inclusion of object-oriented, generic, and functional programming into C++ in addition to C's procedural programming, it would seem natural to assume that this would all have to come at a cost, whether in terms of higher CPU usage or more RAM and/or ROM consumed.
However, as we learned earlier in this chapter, C++ language features are ultimately built upon the C language, and as such there should in turn be little or no overhead relative to implementing a similar constructs in plain C. To resolve this conundrum and to investigate the validity of the low-overhead hypothesis, we'll now take a detailed look at a number of C++ language features, and how they are ultimately implemented, with their corresponding cost in binary and memory size.
Some of the examples that focus specifically on C++ as a low-level embedded language are taken with permission from Rud Merriam's Code Craft series, as published on Hackaday: https://hackaday.io/project/8238-embedding-c.
- Learning SQL Server Reporting Services 2012
- Instant uTorrent
- Mastering Delphi Programming:A Complete Reference Guide
- 數字道路技術架構與建設指南
- Unity 5.x Game Development Blueprints
- 分布式系統與一致性
- 基于Apache Kylin構建大數據分析平臺
- STM32嵌入式技術應用開發全案例實踐
- 面向對象分析與設計(第3版)(修訂版)
- Creating Flat Design Websites
- FL Studio Cookbook
- STM32自學筆記
- Angular 6 by Example
- 筆記本電腦維修技能實訓
- 微服務架構基礎(Spring Boot+Spring Cloud+Docker)