<< Chapter < Page | Chapter >> Page > |
What output is produced by the program shown in Listing 10 ?
Listing 10 . Listing for Question 10. |
---|
public class Ap140{
public static void main(String args[]){new Worker().doIt();
}//end main()}//end class Ap140
class Worker{void doIt(){
Base myVar1 = new Base();myVar1.test();
myVar1 = new A();myVar1.test();
myVar1 = new B();myVar1.test();
X myVar2 = (X)myVar1;myVar2.test();
System.out.println("");}//end doIt()
}// end class Workerclass Base{
public void test(){System.out.print("Base ");
}//end test()}//end class Base
class A extends Base implements X,Y{public void test(){
System.out.print("A ");}//end test()
}//end class Aclass B extends Base implements X,Y{
public void test(){System.out.print("B ");
}//end test()}//end class B
interface X{public void test();
}//end Xinterface Y{
public void test();}//end Y |
I recommend that you open another copy of this document in a separate browser window and use the following links to easilyfind and view the listings while you are reading about them.
This section contains a variety of miscellaneous information.
Financial : Although the Connexions site makes it possible for you to download aPDF file for this module at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF file, youshould be aware that some of the HTML elements in this module may not translate well into PDF.
I also want you to know that, I receive no financial compensation from the Connexions website even if you purchase the PDF version ofthe module.
In the past, unknown individuals have copied my modules from cnx.org, converted them to Kindle books, and placed them for sale onAmazon.com showing me as the author. I neither receive compensation for those sales nor do I know who does receive compensation. If youpurchase such a book, please be aware that it is a copy of a module that is freely available on cnx.org and that it was made andpublished without my prior knowledge.
Affiliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.
C. Base A B B
Expansion of the program from Question 9
The class and interface definitions for the classes and interfaces named Base , A , B , X , and Y are the same as in Question 9 .
Notification Switch
Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?