Inheritance in Java

Similar Posts

  • Static Methods in Java

    Static methods in Java work on the same basic idea of static functions in other languages like C/C++. The idea is that sometimes you have a function that either needs to be shared between instances, instead of tied to a specific instance, or to be used without needing to create an object from the class…

  • Built in Java Classes

    Most modern languages support many of the data types we’ve looked at so far this term, including Stacks, Queues, Hash Maps/Dictionaries, and more. Many of these are supported within the language itself, often through a utility package, or something similar which can be imported, or from a third party library that can be imported. Which…

  • Java Variables

    Inside of a method, like our main method, we might want to create some variables for use. Java gives us numerous primitive data types that we can use, and within a method, we declare and use them, just like we would in C/C++. Comments You might have noticed the comment above. Comments in Java are…

One Comment

Comments are closed.