<< Chapter < Page Chapter >> Page >
Figure 2 - Question 6.
abcd efgh_ijklm abcd 500_ijklm500 abcd_ijklm

Answer 6

Question 7

Design and write a class named A07Foo which, when combined with the class defined in Listing 3 will compile, run, and produce the output shown in Figure 3 .

Listing 3 - Question 7.
/*File Q07.java ************************************************/public class Q07{public static void main(String[] args){A07Foo<Integer,String>fooA = new A07Foo<>(" ijkl"); fooA.set(new Integer(-300));System.out.println( fooA.cat("abcd "," efgh "));System.out.println( fooA.cat("abcd ",new Integer(500)));System.out.println( fooA.cat(new Integer(500)," abcd "));}//end main }//end class Q07//=============================================//
Figure 3 - Question 7.
abcd efgh -300 ijkl abcd 500-300 ijkl500 abcd -300 ijkl

Answer 7

Question 8

True or False: The syntax for a generic method includes a type parameter, inside angle brackets, and appears after the method's return type

Answer 8

Figures

Listings

What is the meaning of the following two images?

These images were inserted here simply to insert some space between the questions and the answers to keep them from being visible on the screen at thesame time.

Spacer image of a rabbit and a penguin.

This image was also inserted for the purpose of inserting space between the questions and the answers.

Spacer image of a penguin and some houses.

Answers

Answer 8

False. The statement should read:

"The syntax for a generic method includes a type parameter, inside angle brackets, and appears before the method's return type"

Back to Question 8

Answer 7

One possible solution is provided in Listing 4 below.

Listing 4 - Answer 7.
/*File A07Foo.java ************************************************///A generic class public class A07Foo<T3,T4>{ private T3 tC;private T4 tD;//constructor public A07Foo(T4 tD){this.tD = tD; }//end constructor//A set methodpublic void set(T3 tC){ this.tC = tC;}//end cat//A generic concatenation method public<T1,T2>String cat(T1 tA,T2 tB){ return tA.toString() + tB.toString()+ tC.toString() + tD.toString(); }//end cat}//end A07Foo//=============================================//

Back to Question 7

Answer 6

One possible solution is provided in Listing 5 below.

Listing 5 - Answer 6.
/*File A06Foo.java ************************************************/public class A06Foo<T3>{ private T3 tC;//A set methodpublic void set(T3 tC){ this.tC = tC;}//end cat//A generic concatenation method public<T1,T2>String cat(T1 tA,T2 tB){ return tA.toString() + tB.toString()+ tC.toString(); }//end cat}//end A06Foo//=============================================//

Back to Question 6

Answer 5

One possible solution is provided in Listing 6 below.

Listing 6 - Answer 5.
/*File A05Foo.java ************************************************/public class A05Foo{ //A generic concatenation methodpublic<T1,T2>String cat(T1 tA,T2 tB){ return tA.toString() + tB.toString();}//end cat }//end A05Foo//=============================================//

Back to Question 5

Answer 4

False. Generic class constructors are allowed.

Back to Question 4

Answer 3

True.

Back to Question 3

Answer 2

False. The statement should read as follows:

"Defining a generic method is similar to declaring a generic type, but the type parameter's scope is limited to the method where it is declared."

Back to Question 2

Answer 1

True.

Back to Question 1

Miscellaneous

This section contains a variety of miscellaneous information.

Housekeeping material
  • Module name: Java4230r: Review of Generic Methods
  • File: Java4230r.htm
  • Published: 09/02/13
Disclaimers:

Financial : Although the Connexions site makes it possible for you to download aPDF file for this module at no charge, and also makes it possiblefor you to purchase a pre-printed version of the PDF file, you should be aware that some of the HTML elements in this module maynot 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.

-end-

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask