Java Tutorial - A Simple Introduction to Inheritance
70This tutorial provides a simple introduction to the concept of inheritance in Object Oriented Programming (OOP). Using Java as our programming language, we illustrate how to create a base class and a derived class. Next, we illustrate how to leverage the derived class in a simple main().
Figure 01 describes our base class. The class has only one member, which is a public property called baseClassInt, declared as an integer. Because it is public, it will be visible to the derived class that we will create shortly. As this class is intended to be a learning tool, we omit many of the details necessary to a useful class in the real world.
Spoiler Alert: The baseClassInt property really shouldn't be public, but we'll address that in a few minutes. :)
Figure 02, below, introduces the derived class. Note the keyword extends in the class definition. This keyword causes all the members of BaseClass to be included in the derived class. Even the private members of the base class become members of the derived class.
We are keeping it very simple; usually there would be one or more members in the derived class. For clarity, we are leaving them out. A derived class with no members is syntactically correct but not common.
Figure 03 is the main() for this project. Here we declare and instantiate an object of type DerivedClass. Instantiating a derived class object creates memory-based copies of all non-static data items in the derived class and the corresponding base class.
Next, we use our new object to reference the member that was declared in the Base Class.
While it looks OK and it builds properly, but it's not really what we want. We can clean it up now.
One of the strengths of OOP is data hiding. In other words, variables (also called properties) that are declared in a class should be 'hidden' in that class. They shouldn't be available to derived classes.
So far, we have violated the philsophy of data hiding. We can fix that.
In Figure 04, the first change we make is to hide the variable in the base class by making it private.
Hiding the variable in the Base Class creates a problem in the Derived Class. The project doesn't build any more; a syntax error is flagged in the main(). We changed the scope of the variable. The error is caused by the attempt to reference the base class property from the derived class object.
Figure 05 illustrates the problem.
This problem is solved by adding a procedure, also called a method, to the base class. This method will provide controlled access to the private variable.
The name of our method isn't special to the Java language, but it's a general convention to preface it with the word "Set" and follow that with the name of the variable.
Figure 06 includes the new code.
FInally, the main is modified to make use of the code we added to the base class. Figure 07 illustrates the modifications.
This tutorial is a very simple introduction to inheritance in Java. The concept applies to all OOP languages and this code can be used as a basis for learning how to implement inheritance.
PrintShare it! — Rate it: up down flag this hub
- NASA To Try Powering Mars Rover "Spirit" Out of Sand Trap
coondoggie writes "NASA's long-running Mars rover Spirit is stuck in a sand trap — a situation the space agency would like to fix. Yesterday NASA said it will begin what it called the long process of extricating Spirit by sending commands that could free the rover. Spirit has been stuck in a place NASA calls 'Troy' since April 23, when the rover's wheels broke through a crust on the surface that was covering bright-toned, slippery sand underneath. After a few drive attempts to get Spirit out in the subsequent days, it began sinking deeper in the sand trap. Driving was suspended to allow time for tests and reviews of possible escape strategies, NASA stated."Read more of this story at Slashdot.
- GNOME 3 Delayed Until September 2010
supersloshy writes "Contrary to popular opinion, GNOME 3 will not be released in March next year. It has been delayed until September 2010, six months later. According to the news message, this is because 'our community wants GNOME 3.0 to be fully working for users and why we believe September is more appropriate.' GNOME 3's main goal is to re-define the ways people interact with the desktop, mainly through a new UI design (currently called 'GNOME Shell'), while GNOME 2.30, set for release in March, will have a focus on being stable. An early visual tour of GNOME 3 has been posted at Digitizor."Read more of this story at Slashdot.
- Commodore 64 Runs Again On the iPhone
Hugh Pickens writes "Stephen Williams reports in the NY Times that the app recreating some of the Commodore's seminal retro games, including Le Mans, Dragons Den and Jupiter Lander, has been re-issued after being pulled in September. The app features SID sound emulation, auto-save to continue where you left off, and a realistic joystick with a beautifully crafted C64 keyboard. Apple originally rejected the program for violating the SDK agreement, which dictates that 'no interpreted code may be downloaded and used in an Application except for code that is interpreted and run by Apple's Published APIs and built-in interpreter(s).' After disabling the controversial feature, Apple published the app in September, but days later it was pulled and the developer was asked to remove, rather than just disable, the BASIC interpreter from the program, which would have allowed unscrupulous users to run unlicensed, emulated code on the iPhone or iPod Touch. 'The road was bumpy, but we remained persistent and made the changes Apple was looking for. Ultimately, BASIC has been removed for this release; however, we hope that working with Apple further will allow us to re-enable it,' the company wrote on its blog."Read more of this story at Slashdot.









