Steps to follow:
1. Write an abstract class called LivingThing.java as shown below in Code-11.4.a. (You are welcome to do this work using either command line tools or NetBeans. The instruction here is given using command line tools. In general, using NetBeans is highly recommended.)
* cd \myjavaprograms
* mkdir abstractexercise
* jedit abstractexercise\LivingThing.java
package abstractexercise;
// The LivingThing class is an abstract class because
// some methods in it are declared as abstract methods.
public abstract class LivingThing {
public void breath(){
System.out.println("Living Thing breathing...");
}
public void eat(){
System.out.println("Living Thing eating...");
}
/**
* abstract method walk
* We want this method to be overridden by subclasses of
* LivingThing
*/
public abstract void walk();
}
Code-11.4.a: LivingThing.java
2. Write Main.java.
* cd \myjavaprograms
* jedit abstractexercise\Main.java
package abstractexercise;
public class Main {
public static void main( String[] args ) {
LivingThing x = new LivingThing();
}
}
Code-11.4.b: Main.java
3. Compile Livingthing.java and Main.java.
* cd \myjavaprograms
* javac abstractexercise\LivingThing.java abstractexercise\Main.java
4. Note that you will experience a compile error since you cannot create an object instance from an abstract class.
* C:\myjavaprograms>javac abstractexercise\LivingThing.java abstractexercise\Main.java
abstractexercise\Main.java:5: abstractexercise.LivingThing is abstract; cannot be instantiated
LivingThing x = new LivingThing();
^
1 error
5. Write a concrete class called Human that extends the abstract LivingThing class
* cd \myjavaprograms
* jedit abstractexercise\Human.java
package abstractexercise;
public class Human extends LivingThing {
public void walk(){
System.out.println("Human walks...");
}
}
Code-11.4.c: Human.java
6. Rewrite Main.java.
package abstractexercise;
public class Main {
public static void main( String[] args ) {
Human x = new Human();
x.walk();
LivingThing y = new Human();
y.walk();
}
}
Code-11.4.d: Main.java
7. Compile and run the code using a directory structure.
* cd \myjavaprograms
* javac abstractexercise\*.java
* java -classpath . abstractexercise.Main
8. Verify the result is as following.
* C:\myjavaprograms>java -classpath . abstractexercise.Main
Human walks...
Human walks...
Popular Posts
-
Declaration of variables In order to use a variable in C++, we must first declare it specifying which data type we want it to be. The syntax...
-
SQL aliases can be used with database tables and with database table columns, depending on task you are performing. SQL column aliases are u...
-
STRINGS: The way a group of integers can be stored in an integer array, similarly a group of characters can be stored in a character array. ...
-
To whom is this tutorial directed? This tutorial is for those people who want to learn programming in C++ and do not necessarily have any pr...
-
MSDE stands for Microsoft Desktop Engine. MSDE is replaced with Microsoft SQL Server 2005 Express. MSDE is a free, light weight version of S...
-
The SQL ORDER BY clause comes in handy when you want to sort your SQL result sets by some column(s). For example if you want to select all t...
-
A "service" is an application that can start automatically when the computer starts. There are two start up modes: 1. Automatic - ...
-
Inheritance A key feature of OOP is reusability. It's always time saving and useful if we can reuse something that already exists rather...
-
Syntax of JSP Scriptles are: <% //java codes %> JSP Scriptlets begins with <% and ends %> .We can embed any a...
-
Introduction: In this exercise, you are going to build and run a sample Java program called Homework using NetBeans. The sample program can...
No comments:
Post a Comment