Introduction to Java Applications -...

88
1 © 1992-2007 Pearson Education, Inc. All rights reserved. 2 Introduction to Java Applications

Transcript of Introduction to Java Applications -...

Page 1: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

1

© 1992-2007 Pearson Education, Inc. All rights reserved.

2Introduction

to Java Applications

Page 2: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

2

© 1992-2007 Pearson Education, Inc. All rights reserved.

OBJECTIVESIn this chapter you will learn: To write simple Java applications. To use input and output statements. Java’s primitive types. Basic memory concepts. To use arithmetic operators. The precedence of arithmetic operators. To write decision-making statements. To use relational and equality operators.

Page 3: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

3

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.1 Introduction2.2 First Program in Java: Printing a Line of Text2.3 Modifying Our First Java Program2.4 Displaying Text with printf2.5 Another Java Application: Adding Integers2.6 Memory Concepts2.7 Arithmetic2.8 Decision Making: Equality and Relational Operators2.9 (Optional) Software Engineering Case Study:

Examining the Requirements Document2.10 Wrap-Up

Page 4: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

4

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.1 Introduction

• Java application programming– Display messages– Obtain information from the user– Arithmetic calculations– Decision-making fundamentals

Page 5: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

5

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text

• Application– Executes when you use the java command to launch the

Java Virtual Machine (JVM)

• Sample program– Displays a line of text– Illustrates several important Java language features

Page 6: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

6

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Welcome1.java

1 // Fig. 2.1: Welcome1.java 2 // Text - printing program. 3

4 public class Welcome1 5 { 6 // main method begins execution of Java application 7 public static void main( String args[] ) 8 { 9 System.out.println( "Welcome to Java Programming!" ); 10

11 } // end method main 12

13 } // end clazss Welcome1

Welcome to Java Programming!

Page 7: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

7

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

– Comments start with: //• Comments ignored during program execution• Document and describe code• Provides code readability

– Traditional comments: /* ... *//* This is a traditional comment. It can be split over many lines */

– Another line of comments– Note: line numbers not part of program, added for reference

1 // Fig. 2.1: Welcome1.java

2 // Text-printing program.

Page 8: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

8

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.1Forgetting one of the delimiters of a traditional orJavadoc comment is a syntax error. The syntax of aprogramming language specifies the rules for creating aproper program in that language. A syntax error occurswhen the compiler encounters code that violates Java’slanguage rules (i.e., its syntax). In this case, the compilerdoes not produce a .class file. Instead, the compiler issuesan error message to help the programmer identify and fixthe incorrect code. Syntax errors are also called compilererrors, compile-time errors or compilation errors, becausethe compiler detects them during the compilation phase.You will be unable to execute your program until youcorrect all the syntax errors in it.

Page 9: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

9

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.1

Every program should begin with a commentthat explains the purpose of the program, theauthor and the date and time the program waslast modified. (We are not showing the author,date and time in this book’s programs becausethis information would be redundant.)

Page 10: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

10

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

– Blank line• Makes program more readable• Blank lines, spaces, and tabs are white-space characters

– Ignored by compiler

– Begins class declaration for class Welcome1• Every Java program has at least one user-defined class• Keyword: words reserved for use by Java

– class keyword followed by class name• Naming classes: capitalize every word

– SampleClassName

3

4 public class Welcome1

Page 11: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

11

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.2

Use blank lines and space characters to enhanceprogram readability.

Page 12: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

12

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

– Java identifier• Series of characters consisting of letters, digits,

underscores ( _ ) and dollar signs ( $ )• Does not begin with a digit, has no spaces• Examples: Welcome1, $value, _value, button7

– 7button is invalid• Java is case sensitive (capitalization matters)

– a1 and A1 are different– In chapters 2 to 7, start each class with public class

• Details of this covered later

4 public class Welcome1

Page 13: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

13

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.3

By convention, always begin a class name’sidentifier with a capital letter and start eachsubsequent word in the identifier with a capitalletter. Java programmers know that suchidentifiers normally represent Java classes, sonaming your classes in this manner makes yourprograms more readable.

Page 14: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

14

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.2

Java is case sensitive. Not using the properuppercase and lowercase letters for anidentifier normally causes a compilationerror.

Page 15: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

15

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

– Saving files• File name must be class name with .java extension• Welcome1.java

– Left brace {• Begins body of every class• Right brace ends declarations (line 13)

4 public class Welcome1

5 {

Page 16: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

16

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.3

It is an error for a public class to have a filename that is not identical to the class name(plus the .java extension) in terms of bothspelling and capitalization.

Page 17: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

17

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.4

It is an error not to end a file name with the.java extension for a file containing a classdeclaration. If that extension is missing, theJava compiler will not be able to compile theclass declaration.

Page 18: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

18

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.4

Whenever you type an opening left brace, {,in your program, immediately type theclosing right brace, }, then reposition thecursor between the braces and indent tobegin typing the body. This practice helpsprevent errors due to missing braces.

Page 19: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

19

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.5

Indent the entire body of each classdeclaration one “level” of indentation betweenthe left brace, {, and the right brace, }, thatdelimit the body of the class. This formatemphasizes the class declaration's structureand makes it easier to read.

Page 20: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

20

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.6

Set a convention for the indent size youprefer, and then uniformly apply thatconvention. The Tab key may be used tocreate indents, but tab stops vary among texteditors. We recommend using three spaces toform a level of indent.

Page 21: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

21

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.5

It is a syntax error if braces do not occur inmatching pairs.

Page 22: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

22

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

– Part of every Java application• Applications begin executing at main

– Parentheses indicate main is a method (Ch. 3 and 6)– Java applications contain one or more methods

• Exactly one method must be called main– Methods can perform tasks and return information

• void means main returns no information• For now, mimic main's first line

– Left brace begins body of method declaration• Ended by right brace } (line 11)

7 public static void main( String args[] )

8 {

Page 23: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

23

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.7

Indent the entire body of each methoddeclaration one “level” of indentation betweenthe left brace, {, and the right brace, }, thatdefine the body of the method. This formatmakes the structure of the method stand outand makes the method declaration easier toread.

Page 24: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

24

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

– Instructs computer to perform an action• Prints string of characters

– String – series of characters inside double quotes• White-spaces in strings are not ignored by compiler

– System.out• Standard output object• Print to command window (i.e., MS-DOS prompt)

– Method System.out.println• Displays line of text

– This line known as a statement• Statements must end with semicolon ;

9 System.out.println( "Welcome to Java Programming!" );

Page 25: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

25

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.6

Omitting the semicolon at the end of astatement is a syntax error.

Page 26: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

26

© 1992-2007 Pearson Education, Inc. All rights reserved.

Error-Prevention Tip 2.1When learning how to program, sometimes it ishelpful to “break” a working program so you canfamiliarize yourself with the compiler's syntax-error messages. These messages do not alwaysstate the exact problem in the code. When youencounter such syntax-error messages in thefuture, you will have an idea of what caused theerror. Try removing a semicolon or brace fromthe program of Fig. 2.1, then recompile theprogram to see the error messages generated bythe omission.

Page 27: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

27

© 1992-2007 Pearson Education, Inc. All rights reserved.

Error-Prevention Tip 2.2

When the compiler reports a syntax error,the error may not be on the line numberindicated by the error message. First, checkthe line for which the error was reported. Ifthat line does not contain syntax errors,check several preceding lines.

Page 28: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

28

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

– Ends method declaration

– Ends class declaration– Can add comments to keep track of ending braces

11 } // end method main

13 } // end class Welcome1

Page 29: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

29

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.8

Following the closing right brace (}) of amethod body or class declaration with an end-of-line comment indicating the method or classdeclaration to which the brace belongsimproves program readability.

Page 30: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

30

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

• Compiling a program– Open a command prompt window, go to directory where

program is stored– Type javac Welcome1.java– If no syntax errors, Welcome1.class created

• Has bytecodes that represent application• Bytecodes passed to JVM

Page 31: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

31

© 1992-2007 Pearson Education, Inc. All rights reserved.

Error-Prevention Tip 2.3When attempting to compile a program, if you receive a messagesuch as “bad command or filename,” “javac: command not found”or “'javac' is not recognized as an internal or external command,operable program or batch file,” then your Java softwareinstallation was not completed properly. If you are using theJava Development Kit, this indicates that the system’s PATHenvironment variable was not set properly. Please review theinstallation instructions in the Before You Begin section of thisbook carefully. On some systems, after correcting the PATH,you may need to reboot your computer or open a new commandwindow for these settings to take effect.

Page 32: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

32

© 1992-2007 Pearson Education, Inc. All rights reserved.

Error-Prevention Tip 2.4

The Java compiler generates syntax-errormessages when the syntax of a program isincorrect. Each error message contains the filename and line number where the erroroccurred. For example, Welcome1.java:6 indicatesthat an error occurred in the file Welcome1.javaat line 6. The remainder of the error messageprovides information about the syntax error.

Page 33: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

33

© 1992-2007 Pearson Education, Inc. All rights reserved.

Error-Prevention Tip 2.5

The compiler error message “Public classClassName must be defined in a file calledClassName.java” indicates that the file namedoes not exactly match the name of the publicclass in the file or that you typed the classname incorrectly when compiling the class.

Page 34: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

34

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.2 First Program in Java: Printing a Lineof Text (Cont.)

• Executing a program– Type java Welcome1

• Launches JVM• JVM loads .class file for class Welcome1• .class extension omitted from command• JVM calls method main

Page 35: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

35

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.2 | Executing Welcome1 in a Microsoft Windows XP Command Prompt window.

You type this command to execute the application

The program outputs

Welcome to Java Programming!

Page 36: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

36

© 1992-2007 Pearson Education, Inc. All rights reserved.

Error-Prevention Tip 2.6

When attempting to run a Java program, if youreceive a message such as “Exception in thread"main" java.lang.NoClassDefFoundError: Welcome1,”your CLASSPATH environment variable has notbeen set properly. Please review the installationinstructions in the Before You Begin section of thisbook carefully. On some systems, you may need toreboot your computer or open a new commandwindow after configuring the CLASSPATH.

Page 37: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

37

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.3 Modifying Our First Java Program

• Modify example in Fig. 2.1 to print same contentsusing different code

Page 38: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

38

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.3 Modifying Our First Java Program(Cont.)

• Modifying programs– Welcome2.java (Fig. 2.3) produces same output as

Welcome1.java (Fig. 2.1)– Using different code

– Line 9 displays “Welcome to ” with cursor remaining onprinted line

– Line 10 displays “Java Programming! ” on same line withcursor on next line

9 System.out.print( "Welcome to " );10 System.out.println( "Java Programming!" );

Page 39: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

39

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Welcome2.java

1. Comments

2. Blank line

3. Begin classWelcome2

3.1 Method main

4. MethodSystem.out.print

4.1 MethodSystem.out.println

5. end main,Welcome2

Program Output

1 // Fig. 2.3: Welcome2.java 2 // Printing a line of text with multiple statements. 3

4 public class Welcome2 5 { 6 // main method begins execution of Java application 7 public static void main( String args[] ) 8 { 9 System.out.print( "Welcome to " ); 10 System.out.println( "Java Programming!" ); 11

12 } // end method main 13

14 } // end class Welcome2

Welcome to Java Programming!

System.out.print keeps the cursor on thesame line, so System.out.printlncontinues on the same line.

Page 40: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

40

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.3 Modifying Our First Java Program(Cont.)

• Escape characters– Backslash ( \ )– Indicates special characters to be output

• Newline characters (\n)– Interpreted as “special characters” by methods

System.out.print and System.out.println– Indicates cursor should be at the beginning of the next line– Welcome3.java (Fig. 2.4)

– Line breaks at \n9 System.out.println( "Welcome\nto\nJava\nProgramming!" );

Page 41: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

41

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Welcome3.java

1. main

2. System.out.println(uses \n for new line)

Program Output

1 // Fig. 2.4: Welcome3.java 2 // Printing multiple lines of text with a single statement. 3

4 public class Welcome3 5 { 6 // main method begins execution of Java application 7 public static void main( String args[] ) 8 { 9 System .out.println( "Welcome\nt o\nJava\nProgramming!" ) ; 10

11 } // end method main 12

13 } // end class Welcome3

Welcome t o J ava Programming!

A new line begins after each \n escapesequence is output.

Page 42: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

42

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.5 | Some common escape sequences.

Escape sequence

Description

\n Newline. Position the screen cursor at the beginning of the next line.

\t Horizontal tab. Move the screen cursor to the next tab stop.

\r Carriage return. Position the screen cursor at the beginning of the current line —do not advance to the next line. Any characters output after the carriage return overwrite the characters previously output on that line.

\\ Backslash. Used to print a backslash character.

\" Double quote. Used to print a double -quote character. For example ,

System.out.println( "\"in quotes \"" );

displays

"in quotes"

Page 43: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

43

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.4 Displaying Text with printf

• System.out.printf– Feature added in Java SE 5.0– Displays formatted data

– Format string• Fixed text• Format specifier – placeholder for a value

– Format specifier %s – placeholder for a string

9 System.out.printf( "%s\n%s\n",10 "Welcome to", "Java Programming!" );

Page 44: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

44

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Welcome4.java

main

printf

Program output

1 // Fig. 2.6: Welcome4.java 2 // Printing multiple lines in a dialog box. 3

4 public class Welcome4 5 { 6 // main method begins execution of Java application 7 public static void main( String args[] ) 8 { 9 System.out.printf( "%s\n%s\n", 10 "Welcome to", "Java Programming!" ); 11

12 } // end method main 13

14 } // end class Welcome4

Welcome to Java Programming!

System.out.printf displaysformatted data.

Page 45: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

45

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.9

Place a space after each comma (,) in anargument list to make programs morereadable.

Page 46: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

46

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.7

Splitting a statement in the middle of anidentifier or a string is a syntax error.

Page 47: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

47

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.5 Another Java Application: AddingIntegers

• Upcoming program– Use Scanner to read two integers from user– Use printf to display sum of the two values– Use packages

Page 48: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

48

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Addition.java

(1 of 2)

import declaration

Scanner

nextInt

1 // Fig. 2.7: Addition.java

2 // Addition program that displays the sum of two numbers.

3 import java.util.Scanner; // program uses class Scanner

4

5 public class Addition

6 {

7 // main method begins execution of Java application

8 public static void main( String args[] )

9 {

10 // create Scanner to obtain input from command window

11 Scanner input = new Scanner( System.in );

12

13 int number1; // first number to add

14 int number2; // second number to add

15 int sum; // sum of number1 and number2

16

17 System.out.print( "Enter first integer: " ); // prompt

18 number1 = input.nextInt(); // read first number from user

19

import declaration imports classScanner from package java.util.

Declare and initialize variableinput, which is a Scanner.

Declare variables number1,number2 and sum.

Read an integer from the userand assign it to number1.

Page 49: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

49

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Addition.java

(2 of 2)

4. Addition

5. printf

20 System.out.print( "Enter second integer: " ); // prompt

21 number2 = input.nextInt(); // read second number from user

22

23 sum = number1 + number2; // add numbers

24

25 System.out.printf( "Sum is %d\n", sum ); // display sum

26

27 } // end method main

28

29 } // end class Addition

Enter first integer: 45 Enter second integer: 72 Sum is 117

Read an integer from the userand assign it to number2.

Calculate the sum of thevariables number1 andnumber2, assign result to sum.

Display the sum usingformatted output.

Two integers entered by the user.

Page 50: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

50

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.5 Another Java Application: AddingIntegers (Cont.)

– import declarations• Used by compiler to identify and locate classes used in Java

programs• Tells compiler to load class Scanner from java.util package

– Begins public class Addition• Recall that file name must be Addition.java

– Lines 8-9: begin main

3 import java.util.Scanner; // program uses class Scanner

5 public class Addition6 {

Page 51: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

51

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.8

All import declarations must appear before thefirst class declaration in the file. Placing animport declaration inside a class declaration’sbody or after a class declaration is a syntaxerror.

Page 52: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

52

© 1992-2007 Pearson Education, Inc. All rights reserved.

Error-Prevention Tip 2.7Forgetting to include an import declaration fora class used in your program typically resultsin a compilation error containing a messagesuch as “cannot resolve symbol.” When thisoccurs, check that you provided the properimport declarations and that the names in theimport declarations are spelled correctly,including proper use of uppercase andlowercase letters.

Page 53: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

53

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.5 Another Java Application: AddingIntegers (Cont.)

– Variable Declaration Statement– Variables

• Location in memory that stores a value– Declare with name and type before use

• Input is of type Scanner– Enables a program to read data for use

• Variable name: any valid identifier– Declarations end with semicolons ;– Initialize variable in its declaration

• Equal sign• Standard input object

– System.in

10 // create Scanner to obtain input from command window11 Scanner input = new Scanner( System.in );

Page 54: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

54

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.5 Another Java Application: AddingIntegers (Cont.)

– Declare variable number1, number2 and sum of type int• int holds integer values (whole numbers): i.e., 0, -4, 97• Types float and double can hold decimal numbers• Type char can hold a single character: i.e., x, $, \n, 7• int, float, double and char are primitive types

– Can add comments to describe purpose of variables

– Can declare multiple variables of the same type in onedeclaration

– Use comma-separated list

13 int number1; // first number to add14 int number2; // second number to add15 int sum; // sum of number 1 and number 2

int number1, // first number to add number2, // second number to add sum; // sum of number1 and number2

Page 55: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

55

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.10

Declare each variable on a separate line. Thisformat allows a descriptive comment to beeasily inserted next to each declaration.

Page 56: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

56

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.11

Choosing meaningful variable names helps aprogram to be self-documenting (i.e., one canunderstand the program simply by reading itrather than by reading manuals or viewing anexcessive number of comments).

Page 57: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

57

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.12

By convention, variable-name identifiersbegin with a lowercase letter, and every wordin the name after the first word begins with acapital letter. For example, variable-nameidentifier firstNumber has a capital N in itssecond word, Number.

Page 58: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

58

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.5 Another Java Application: AddingIntegers (Cont.)

– Message called a prompt - directs user to perform anaction

– Package java.lang

– Result of call to nextInt given to number1 usingassignment operator =

• Assignment statement• = binary operator - takes two operands

– Expression on right evaluated and assigned to variableon left

• Read as: number1 gets the value of input.nextInt()

17 System.out.print( "Enter first integer: " ); // prompt

18 number1 = input.nextInt(); // read first number from user

Page 59: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

59

© 1992-2007 Pearson Education, Inc. All rights reserved.

Software Engineering Observation 2.1

By default, package java.lang is imported inevery Java program; thus, java.lang is the onlypackage in the Java API that does not requirean import declaration.

Page 60: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

60

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.13

Place spaces on either side of a binaryoperator to make it stand out and make theprogram more readable.

Page 61: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

61

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.5 Another Java Application: AddingIntegers (Cont.)

– Similar to previous statement• Prompts the user to input the second integer

– Similar to previous statement• Assign variable number2 to second integer input

– Assignment statement• Calculates sum of number1 and number2 (right hand side)• Uses assignment operator = to assign result to variable sum• Read as: sum gets the value of number1 + number2• number1 and number2 are operands

20 System.out.print( "Enter second integer: " ); // prompt

21 number2 = input.nextInt(); // read second number from user

23 sum = number1 + number2; // add numbers

Page 62: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

62

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.5 Another Java Application: AddingIntegers (Cont.)

– Use System.out.printf to display results– Format specifier %d

• Placeholder for an int value

– Calculations can also be performed inside printf– Parentheses around the expression number1 + number2

are not required

25 System.out.printf( "Sum is %d\n: " , sum ); // display sum

System.out.printf( "Sum is %d\n: " , ( number1 + number2 ) );

Page 63: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

63

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.6 Memory Concepts

• Variables– Every variable has a name, a type, a size and a value

• Name corresponds to location in memory– When new value is placed into a variable, replaces (and

destroys) previous value– Reading variables from memory does not change them

Page 64: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

64

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.8 | Memory location showing the name and value of variable number1.

Page 65: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

65

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.9 | Memory locations after storing values for number1 and number2.

Page 66: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

66

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.10 | Memory locations after calculating and storing the sum of number1 andnumber2.

Page 67: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

67

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.7 Arithmetic

• Arithmetic calculations used in most programs– Usage

• * for multiplication• / for division• % for remainder• +, -

– Integer division truncates remainder7 / 5 evaluates to 1

– Remainder operator % returns the remainder7 % 5 evaluates to 2

Page 68: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

68

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.11 | Arithmetic operators.

Java operation

Arithmetic operator

Algebraic expression

Java expression

Addition + f + 7 f + 7 Subtraction – p – c p - c Multiplication * bm b * m Division / x / y or or x ÷ y

x / y

Page 69: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

69

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.7 Arithmetic (Cont.)

• Operator precedence– Some arithmetic operators act before others (i.e.,

multiplication before addition)• Use parenthesis when needed

– Example: Find the average of three variables a, b and c• Do not use: a + b + c / 3• Use: ( a + b + c ) / 3

Page 70: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

70

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.12 | Precedence of arithmetic operators.

Operator(s) Operation(s) Order of evaluation

(precedence)

*

/

%

Multiplication

Division

Remainder

Evaluated first. If there are

several operators of this type,

they are evaluated from left to

right.

+

-

Addition

Subtraction

Evaluated next. If there are

several operators of this type,

they are evaluated from left to

right.

Page 71: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

71

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.14

Using parentheses for complex arithmeticexpressions, even when the parentheses arenot necessary, can make the arithmeticexpressions easier to read.

Page 72: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

72

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.13 | Order in which a second-degree polynomial is evaluated.

Page 73: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

73

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.8 Decision Making: Equality andRelational Operators

• Condition– Expression can be either true or false

• if statement– Simple version in this section, more detail later– If a condition is true, then the body of the if statement

executed– Control always resumes after the if statement– Conditions in if statements can be formed using equality or

relational operators (next slide)

Page 74: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

74

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.14 | Equality and relational operators.

Standard algebraic

equality or relational

operator

Java equality

or relational

operator

Sample

Java

condition

Meaning of

Java condition

Equality operators

= == x == y x is equal to y ! != x != y x is not equal to y

Relational operators

> > x > y x is greater than y < < x < y x is less than y " >= x >= y x is greater than or equal to y ! <= x <= y x is less than or equal to y

Page 75: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

75

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Comparison.java

(1 of 2)

1. Class Comparison

1.1 main

1.2 Declarations

1.3 Input data (nextInt)

1.4 Compare twoinputs using ifstatements

1 // Fig. 2.15: Comparison.java

2 // Compare integers using if statements, relational operators

3 // and equality operators.

4 import java.util.Scanner; // program uses class Scanner

5

6 public class Comparison

7 {

8 // main method beg ins execution of Java application

9 public static void main( String args[] )

10 {

11 // create Scanner to obtain input from command window

12 Scanner input = new Scanner( System.in );

13

14 int number1; // first number to compare

15 int number2; // second number to compare

16

17 System.out.print( "Enter first integer: " ); // prompt

18 number1 = input.nextInt(); // read first number from user

19

20 System.out.print( "Enter second i nteger: " ); // prompt

21 number2 = input.nextInt(); // read second number from user

22

23 i f ( number1 == number2 )

24 System.out.printf( "%d == %d\n", number1, number2 );

25

26 i f ( number1 != number2 )

27 System.out.printf( "%d != %d\n", number1, number2 );

28

29 i f ( number1 < number2 )

30 System.out.printf( "%d < %d\n", number1, number2 );

Test for equality, displayresult using printf.

Compares two numbersusing relational operator <.

Page 76: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

76

© 1992-2007 Pearson Education, Inc. All rights reserved.

Outline

Comparison.java

(2 of 2)

Program output

31

32 i f ( number1 > number2 )

33 System.out.printf( "%d > %d\n", number1, number2 );

34

35 i f ( number1 <= number2 )

36 System.out.printf( "%d <= %d\n", number1, number2 );

37

38 i f ( number1 >= number2 )

39 System.out.printf( "%d >= %d\n", number1, number2 );

40

41 } // end method main

42

43 } // end class Comparison

Enter first integer: 777 Enter second integer: 777 777 == 777 777 <= 777 777 >= 777

Enter first integer: 1000 Enter second integer: 2000 1000 != 2000 1000 < 2000 1000 <= 2000

Enter first integer: 2000 Enter second integer: 1000 2000 != 1000 2000 > 1000 2000 >= 1000

Compares two numbersusing relational operators>, <= and >=.

Page 77: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

77

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.8 Decision Making: Equality andRelational Operators (Cont.)

– Line 6: begins class Comparison declaration– Line 12: declares Scanner variable input and assigns it a

Scanner that inputs data from the standard input– Lines 14-15: declare int variables– Lines 17-18: prompt the user to enter the first integer and

input the value– Lines 20-21: prompt the user to enter the second integer

and input the value

Page 78: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

78

© 1992-2007 Pearson Education, Inc. All rights reserved.

2.8 Decision Making: Equality andRelational Operators (Cont.)

– if statement to test for equality using (==)• If variables equal (condition true)

– Line 24 executes• If variables not equal, statement skipped• No semicolon at the end of line 23• Empty statement

– No task is performed– Lines 26-27, 29-30, 32-33, 35-36 and 38-39

• Compare number1 and number2 with the operators !=, <,>, <= and >=, respectively

23 if ( number1 == number2 )24 System.out.printf( "%d == %d\n", number1, number2 );

Page 79: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

79

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.9

Forgetting the left and/or right parenthesesfor the condition in an if statement is a syntaxerror—the parentheses are required.

Page 80: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

80

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.10

Confusing the equality operator, ==, with theassignment operator, =, can cause a logic erroror a syntax error. The equality operatorshould be read as “is equal to,” and theassignment operator should be read as “gets”or “gets the value of.” To avoid confusion,some people read the equality operator as“double equals” or “equals equals.”

Page 81: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

81

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.11

It is a syntax error if the operators ==, !=, >=and <= contain spaces between their symbols,as in = =, ! =, > = and < =, respectively.

Page 82: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

82

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.12

Reversing the operators !=, >= and <=, as in=!, => and =<, is a syntax error.

Page 83: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

83

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.15

Indent an if statement’s body to make it standout and to enhance program readability.

Page 84: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

84

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.16

Place only one statement per line in aprogram. This format enhances programreadability.

Page 85: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

85

© 1992-2007 Pearson Education, Inc. All rights reserved.

Common Programming Error 2.13

Placing a semicolon immediately after theright parenthesis of the condition in an ifstatement is normally a logic error.

Page 86: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

86

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.17A lengthy statement can be spread overseveral lines. If a single statement must besplit across lines, choose breaking points thatmake sense, such as after a comma in acomma-separated list, or after an operator ina lengthy expression. If a statement is splitacross two or more lines, indent allsubsequent lines until the end of thestatement.

Page 87: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

87

© 1992-2007 Pearson Education, Inc. All rights reserved.

Good Programming Practice 2.18Refer to the operator precedence chart (see thecomplete chart in Appendix A) when writingexpressions containing many operators.Confirm that the operations in the expressionare performed in the order you expect. If youare uncertain about the order of evaluation ina complex expression, use parentheses to forcethe order, exactly as you would do in algebraicexpressions. Observe that some operators, suchas assignment, =, associate from right to leftrather than from left to right.

Page 88: Introduction to Java Applications - Unisalento.itsara.unisalento.it/.../page3/files/Lez6-Java_application.pdf · 2012. 7. 5. · 2.1 Introduction 2.2 First Program in Java: Printing

88

© 1992-2007 Pearson Education, Inc. All rights reserved.

Fig. 2.16 | Precedence and associativity of operations discussed.

Operators Associativity Type

* / % left to right multiplicative

+ - left to right additive

< <= > >= left to right relational

== != left to right equality

= right to left assignment