In many ways, functions are the basic unit of work in a c++ program. Every program that we write will have at least one function – the main function. From Chapter 5, you can skip (or skim) the following stuff:
- Section 5.6 – Variable-length args. These can be cool and useful at times, but don’t show up very much for us.
- Section 5.7 – Lambdas. Lambdas are awesome. But, they can be confusing, so in this shortened class, we’ll probably bypass them. Read them if you’d like.
- Section 5.8 – constexpr functions. Cool, but not immediately important for us.
Prototypes
In Java, the relationship between a function call and where the function is implemented (within a particular class) is nonexistent. [Read more…]