<< Chapter < Page Chapter >> Page >
Listing 7 - Question 13.
/*File Q13.java ************************************************/import java.util.*; public class Q13{ArrayList<Integer>var1 = new ArrayList<Integer>();void runIt(){var1.add(new Integer(1)); var1.add(new Integer(2));var1.add(new Integer(3));//Get an iterator Iterator iter = var1.iterator();//Perform the iterationwhile(iter.hasNext()){ System.out.println(iter.next().intValue());}//end while loop}//end runItpublic static void main(String[] args){new Q13().runIt(); }//end main}//end class Q13//=============================================//
Figure 5 - Question 13.
1 23

Answer 13

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 13

False. This program produces the error shown in Figure 6 below. You must qualify the iterator as shown in Listing 8 to correct the error. If you don't qualify the iterator, the reference is retrieved fromthe list as type Object. The Object class neither defines nor inherits a method named intValue.

Listing 8 - Answer 13.
/*File A13.java ************************************************/import java.util.*; public class A13{ArrayList<Integer>var1 = new ArrayList<Integer>();void runIt(){var1.add(new Integer(1)); var1.add(new Integer(2));var1.add(new Integer(3));//Get an iterator Iterator<Integer>iter = var1.iterator();//Perform the iteration while(iter.hasNext()){System.out.println(iter.next().intValue()); }//end while loop}//end runItpublic static void main(String[]args){ new Q13().runIt();}//end main }//end class A13//=============================================//
Figure 6 - Answer 13.
Q13.java:22: error: cannot find symbol System.out.println(iter.next().intValue());^ symbol: method intValue()location: class Object 1 error

Back to Question 13

Answer 12

False. This program produces the compiler error shown in Figure 7 below. This is the result of attempting to store an object's reference of type String in acollection reserved exclusively for references to objects of type Date.

Figure 7 - Answer 12.
Q12.java:13: error: no suitable method found for add(String) var1.add("abcd");^ method ArrayList.add(int,Date) is not applicable(actual and formal argument lists differ in length) method ArrayList.add(Date) is not applicable(actual argument String cannot be converted to Date by method invocation conversion)1 error

Questions & Answers

Biology is a branch of Natural science which deals/About living Organism.
Ahmedin Reply
what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
cell is the smallest unit of the humanity biologically
Abraham
what is biology
Victoria Reply
what is biology
Abraham
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
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