Class - Like structs, but for OO where "functions" that deal with that "struct" (class) are called methods.
Objects - They're like the name of the class. So if the class was "hockey players" then "Iginla" would be an object.
Public/Private - Access levels of variables and methods. Anything under public access means any functions outside of its own methods can adjust or access. Private access means only its member functions (methods) can adjust or access.
|