Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
private is a keyword for setting class access level to private (the other access levels are public and protected) or for private inheritance.
A class created with the keyword class has a private access level by default, a class created by the keyword struct has public access level by default.
class Test |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.