<< Chapter < Page Chapter >> Page >
Figure 7 - Question 9.
This is a title

Answer 9

Question 10

True or False: The code shown in Listing 7 will compile and run successfully producing the output shown in Figure 8 .

Listing 7 - Question 10.
/*File Q10.java ************************************************/import java.awt.*; import javax.swing.*;/*Note the following inheritance hierarchy java.lang.Objectjava.awt.Component java.awt.Containerjava.awt.Window java.awt.Framejavax.swing.JFrame */public class Q10{ public static void main(String[]args){ JFrame aFrame = new JFrame("This is a title");System.out.println(aFrame.getTitle()); Foo aFoo = new Foo();aFoo.runIt(aFrame); }//end main}//end class Q10 //=============================================//class Foo{ public<T extends Object>void runIt(T ref){ System.out.println("Running runIt");System.out.println(ref.getTitle()); }//end runIt}//end Foo //=============================================//
Figure 8 - Question 10.
This is a title

Answer 10

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 10

False. This is an unsuccessful call to generic method with specified upper-bound of Object. The incoming reference is received as type Object and must be downcast to at leastFrame to call the method named getTitle. The incoming parameter is received as the type ofthe specified upper-bound. This results in the compiler error shown in Figure 9 .

Figure 9 - Answer 10.
Q10.java:36: error: cannot find symbol System.out.println(ref.getTitle());^ symbol: method getTitle()location: variable ref of type T where T is a type-variable:T extends Object declared in method<T>runIt(T) 1 error

Back to Question 10

Answer 9

False. This is an unsuccessful call to generic method with default upper- bound of Object. The incoming reference is received as type Object and must bedowncast to at least Frame to call the method named getTitle. The incoming parameter is received as the type of the specified upper-bound which is Objectby default. This results in the compiler error shown in Figure 10 .

Figure 10 - Answer 9.
Q09.java:36: error: cannot find symbol System.out.println(ref.getTitle());^ symbol: method getTitle()location: variable ref of type T where T is a type-variable:T extends Object declared in method<T>runIt(T) 1 error

Questions & Answers

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

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