Tuesday, March 19, 2024 09:38

Archive for May, 2017

Static members

Thursday, May 18th, 2017

As we saw in the previous recent lessons, the usual way of communicating with a class is to create instances (copies) of it, and then use the resulting objects. In fact, that is the strong advantage of the classes – the ability to create copies that can be used and can be modified individually.… Read more

Access modifiers

Sunday, May 14th, 2017

As their name suggests, access modifiers are some programming concepts that can alter the access level of something. In more complex words, access modifiers are reserved keywords which add information for the compiler, and the piece of code related to those modifiers.… Read more


Follow the white rabbit