<< Chapter < Page Chapter >> Page >

Program organization

As you can see from Listing 1 , this program contains two class definitions:

  • Division01 , which is declared public .
  • Worker , which is not declared public .

As explained above, all of the source code is contained in a single disk file named Division01.java .

The class named Division01 is what I will frequently refer to as the driver class. In particular, it contains the main method, where execution begins and ends in a Java application.

A simple main method

In accordance with specification 13 of the course description , the main method is very simple. In particular, the main method instantiates a new object of the class named Worker , and calls a method named doWork belonging to that object. All of the work in the program is performed by the method named doWork .

Back to the question...

Now let's get back to the question that was posed earlier . Which of the outputs listed above are produced by the program code in Listing 1 ?

Explanation

This program illustrates the integer truncation that results when the division operator is applied to operands of the integer types.

The result of simple long division

We all know that when we divide 101 by 3, the result is 33.666666 with the sixes extending out to the limit of our arithmetic accuracy. (Confirm it using your hand calculator.)

The result of rounding

If we round the quotient to the next closest integer, the result is 34.

Integer division does not round

However, when division is performed using operands of integer types in Java, the fractional part is simply discarded (not rounded) . The result is the whole number result without regard for the fractional part or the remainder.Thus, with integer division, 101/3 produces the integer value 33.

If either operand is a floating type...

If either operand is one of the floating types,

  • the integer operand will be converted to the floating type,
  • the quotient will be of the floating type, and
  • the fractional part of the quotient will be preserved to some degree of accuracy

And the answer to the question is...

The code in Listing 1 displays 33 on the standard output device (typically the command-line screen) .

Arithmetic overflow

Let's continue with another question. What output is produced by the program shown in Listing 2 ?

  • A. Compiler Error
  • B. Runtime Error
  • C. 2147483649
  • D. -2147483647
Listing 2 . Arithmetic overflow.
public class Overflow01{ public static void main(String args[]){ new Worker().doWork();}//end main() }//end class definitionclass Worker{ public void doWork(){//Integer.MAX_VALUE = 2147483647 int myVar01 = Integer.MAX_VALUE;int myVar02 = 2; System.out.println(myVar01 + myVar02);}//end doWork() }//end class definition

Explanation

This program illustrates a dangerous situation involving arithmetic using operands of integer types. This situation involves a condition commonly known as integer overflow or arithmetic overflow . This problem usually involves either the addition or multiplication of integer operands.

The good news

The good news about doing arithmetic using operands of integer types is that as long as the result is within the allowable value range for the wider of the integer types, the results are exact (floating arithmetic often produces results that are not exact) .

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
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
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
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, Ap computer science a, clarification of the java subset. OpenStax CNX. Oct 03, 2015 Download for free at https://legacy.cnx.org/content/col11279/1.5
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Ap computer science a, clarification of the java subset' conversation and receive update notifications?

Ask