1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Include guards
Prevents the same definitions from being compiled more than once
Separate compilation
Splitting a program across many files, each of which can be compiled without knowledge of what is in the other files. Only updated files are compiled, and the resulting object files are linked
Namespace
Collection of names that the compiler knows about. Allows for same function names.
using
automatically uses the namespace without needing to write the namespace before the function.
How to access just one name in a namespace
using [namespace]::[function name]