Search
Class Diagrams
Scope
Public scope to make that variable/function available from anywhere, other classes and instances of the object.
Private scope when you want your variable/function to be visible in its own class only.
Protected scope when you want to make your variable/function visible in all classes that extend current class including the parent class (and child classes).
Static a variable that has been allocated "statically", meaning that its lifetime (or "extent") is the entire run of the program.
Data Type
bool
int
float
double
array
struct
etc...
Recent Posts
See AllSource Control allows you to track certain files over time. If you mess up or delete something you need back you can always return to a...
Comments