Learning C++17 from Java - Header files

1 · Timi Adeniran · Dec. 4, 2021, 7:01 p.m.
This is a continuation of the series on C++ topics that I've found interesting, coming from a Java background. You can read the first post here. I'll start this post by describing forward declarations in C++ before talking about header files. Table of Contents Forward declarations Working with multiple files Multiple declarations, single definition Header files Header guards Header files and linkage Further Reading Say we write the program below to print the elements in a list: #include ...