1 / 73

CMPT 126

CMPT 126. Java Basics. Software Development Process: The Big Picture. Problem statement Step 1 - Understand the problem statement Step 2 - Design our software solution Step 3 - Implement our software solution using an editor or IDE (integrated development environment )

rgebhard
Télécharger la présentation

CMPT 126

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CMPT 126 Java Basics

  2. Software Development Process: The Big Picture Problem statement • Step 1 - Understand the problem statement • Step 2 - Design our software solution • Step 3 - Implement our software solution using an editor or IDE (integrated development environment ) • Save our program in a file named <classname>.java (e.g.: HelloWorld.java) • Compile our program • Command (example): javac HelloWorld.java • Compiles into bytecode using the Java compiler • Produces a file named, for example, HelloWorld.class • Compile-time errors (syntax errors) • Step 4 – Test and debug • Execute (run) the file • Command (example): java HelloWorld • Executes, for example, HelloWorld.class • Outputs “Hello, world!” • Run-time errors • Test: find logical errors and debug: fix logical errors

  3. Outline • Character Strings • Variables and Assignment • Primitive Data Types • Expressions • Data Conversion • Reading Input Data

  4. 2.1 – Character Strings A string of characters can be represented as a string literal by putting double quotes around it Examples: "This is a string literal." "123 Main Street" "X" Every character string is an object in Java, defined by the String class Every string literal represents a String object

  5. 2.1 – The println Method In the Lincoln program from Chapter 1, we invoked the println method to print a character string The System.out object represents a destination (the monitor) to which we can send output object method name information provided to the method (parameters) System.out.println ("Whatever you are, be a good one.");

  6. 2.1 – The print Method The System.out object provides another service as well The print method is similar to the println method, except that it does not advance to the next line Therefore anything printed after a print statement will appear on the same line

  7. 2.1 – Countdown.java //******************************************************************** // Countdown.java Java Foundations // // Demonstrates the difference between print and println. //******************************************************************** public class Countdown { //----------------------------------------------------------------- // Prints two lines of output representing a rocket countdown. //----------------------------------------------------------------- public static void main (String[] args) { System.out.print ("Three... "); System.out.print ("Two... "); System.out.print ("One... "); System.out.print ("Zero... "); System.out.println ("Liftoff!"); // appears on first output line System.out.println ("Houston, we have a problem."); } }

  8. 2.1 – String Concatenation The string concatenation operator (+) is used to append one string to the end of another "Peanut butter " + "and jelly" It can also be used to append a number to a string A string literal cannot be broken across two lines in a program

  9. 2.1 – Facts.java //******************************************************************** // Facts.java Java Foundations // // Demonstrates the use of the string concatenation operator and the // automatic conversion of an integer to a string. //******************************************************************** public class Facts { //----------------------------------------------------------------- // Prints various facts. //----------------------------------------------------------------- public static void main (String[] args) { // Strings can be concatenated into one long string System.out.println ("We present the following facts for your " + "extracurricular edification:"); System.out.println (); // A string can contain numeric digits System.out.println ("Letters in the Hawaiian alphabet: 12"); (more…)

  10. 2.1 – Facts.java // A numeric value can be concatenated to a string System.out.println ("Dialing code for Antarctica: " + 672); System.out.println ("Year in which Leonardo da Vinci invented " + "the parachute: " + 1515); System.out.println ("Speed of ketchup: " + 40 + " km per year"); } }

  11. 2.1 – String Concatenation The + operator is also used for arithmetic addition The function that it performs depends on the type of the information on which it operates If both operands are strings, or if one is a string and one is a number, it performs string concatenation If both operands are numeric, it adds them The + operator is evaluated left to right, but parentheses can be used to force the order

  12. 2.1 – Addition.java //******************************************************************** // Addition.java Java Foundations // // Demonstrates the difference between the addition and string // concatenation operators. //******************************************************************** public class Addition { //----------------------------------------------------------------- // Concatenates and adds two numbers and prints the results. //----------------------------------------------------------------- public static void main (String[] args) { System.out.println ("24 and 45 concatenated: " + 24 + 45); System.out.println ("24 and 45 added: " + (24 + 45)); } }

  13. Problem Statement #3 • Write a Java program that • welcomes a student to Cmpt 126 • prints your name and other niceties

  14. Step 3 – Implement Software Solution /** * Filename: Welcome.java * Date: January 14, 2011 * Description: Demo of Output Statements */ // Prints a welcome message and my name public class Welcome { public static void main(String[] args) { int courseNumber = 126; // Show examples of string concatenation // and output statements System.out.print("Welcome to Cmpt " + courseNumber + "!"); System.out.println(); System.out.print("My name is "); System.out.print(“Daqing"); System.out.print(" Yang.\n"); System.out.println("Hope you enjoy the course!"); } // end of main method } // end of Welcome class

  15. A Look at our Welcome Program • Different type of comments • Print statement • println( ) versus print( ) methods • printing 1 line using many output statements • printing an empty/blank line • String • "My name is " is a String literal • String concatenation -> operator + • Escape characters

  16. 2.1 – Escape Sequences What if we wanted to print a the quote character? The following line would confuse the compiler because it would interpret the second quote as the end of the string System.out.println ("I said "Hello" to you."); An escape sequence is a series of characters that represents a special character An escape sequence begins with a backslash character (\) System.out.println ("I said \"Hello\" to you.");

  17. 2.1 – Escape Sequences Some Java escape sequences Escape Sequence \b \t \n \r \" \' \\ Meaning backspace tab newline carriage return double quote single quote backslash

  18. Escape Sequences // Header comment block here… public class PlayingWithEscapeChars { public static void main(String[] args) { // Examples of uses of escape sequences System.out.print("Here are some escape sequences:"); System.out.println("\n\tNewline \t\\n"); System.out.println( "\tBackspace\t\\b"); System.out.println( "\tBackslash\t\\r"); } // end of main method } // end of PlayingWithEscapeChars class

  19. Homework: What will the output of the program look like?

  20. Outline • Character Strings • Variables and Assignment • Primitive Data Types • Expressions • Data Conversion • Reading Input Data

  21. 2.2 – Variables A variable is a name for a location in memory A variable must be declared by specifying its name and the type of information that it will hold data type variable name int total; int count, temp, result; Multiple variables can be created in one declaration

  22. 2.2 – Variable Initialization A variable can be given an initial value in the declaration int sum = 0; int base = 32, max = 149; • When a variable is referenced in a program, its current value is used

  23. 2.2 – PianoKeys.java //******************************************************************** // PianoKeys.java Java Foundations // // Demonstrates the declaration, initialization, and use of an // integer variable. //******************************************************************** public class PianoKeys { //----------------------------------------------------------------- // Prints the number of keys on a piano. //----------------------------------------------------------------- public static void main (String[] args) { int keys = 88; System.out.println ("A piano has " + keys + " keys."); } }

  24. 2.2 – Assignment An assignment statement changes the value of a variable The assignment operator is the = sign total = 55; • The expression on the right is evaluated and the result is stored in the variable on the left • The value that was in total is overwritten • You can only assign a value to a variable that is consistent with the variable's declared type

  25. 2.2 – Constants A constant is an identifier that is similar to a variable except that it holds the same value during its entire existence As the name implies, it is constant, not variable The compiler will issue an error if you try to change the value of a constant In Java, we use the final modifier to declare a constant final int MIN_HEIGHT = 69;

  26. 2.2 – Constants Constants are useful for three important reasons First, they give meaning to otherwise unclear literal values Example, MAX_LOAD means more than the literal 250 Second, they facilitate program maintenance If a constant is used in multiple places, its value need only be updated in one place Third, they formally establish that a value should not change, avoiding inadvertent errors by other programmers

  27. Outline • Character Strings • Variables and Assignment • Primitive Data Types • Expressions • Data Conversion • Reading Input Data

  28. 2.3 – Primitive Data There are eight primitive data types in Java Four of them represent integers byte, short, int, long Two of them represent floating point numbers float, double One of them represents characters char And one of them represents boolean values boolean

  29. 2.3 – Numeric Primitive Data The difference between the various numeric primitive types is their size, and therefore the values they can store: Type byte short int long float double Storage 8 bits 16 bits 32 bits 64 bits 32 bits 64 bits Min Value -128 -32,768 -2,147,483,648 < -9 x 1018 +/- 3.4 x 1038 with 7 significant digits +/- 1.7 x 10308 with 15 significant digits Max Value 127 32,767 2,147,483,647 > 9 x 1018

  30. 2.3 – Characters A char variable stores a single character Character literals are delimited by single quotes: 'a' 'X' '7' '$' ',' '\n' Example declarations char topGrade = 'A'; char terminator = ';', separator = ' '; Note the distinction between a primitive character variable, which holds only one character, and a String object, which can hold multiple characters

  31. 2.3 – Character Sets A character set is an ordered list of characters, with each character corresponding to a unique number A char variable in Java can store any character from the Unicode character set The Unicode character set uses sixteen bits per character It is an international character set, containing symbols and characters from many world languages

  32. 2.3 – Characters The ASCII character set is older and smaller than Unicode The ASCII characters are a subset of the Unicode character set, including uppercase letters lowercase letters punctuation digits special symbols control characters A, B, C, … a, b, c, … period, semi-colon, … 0, 1, 2, … &, |, \, … carriage return, tab, ...

  33. 2.3 – Boolean A boolean value represents a true or false condition The reserved words true and false are the only valid values for a boolean type boolean done = false; A boolean variable can also be used to represent any two states, such as a light bulb being on or off

  34. Outline • Character Strings • Variables and Assignment • Primitive Data Types • Expressions • Data Conversion • Reading Input Data

  35. Objective - next • Expressions • Arithmetic operators • Operators formed using assignment operator • Increment and decrement operator • Operator precedence • Data conversion • Assignment conversion • Promotion • Casting

  36. Expression • Statements may be composed of … • Expressions – an expression is a kind of one or more operators and operands that usually performs a calculation (or an operation). • One kind of expression is arithmetic expression, which is composed of … • Arithmetic operators • Operands: variables, constants and/or literal values • (Assignment operator) • And it produces a result

  37. Examples of Expressions • 2 + 3 • x > y • “Hello, ” + “World!” • ++age • int exp = 2 * 5 +7; • age = age + 1; • count--; Arithmetic operators? Operands?

  38. Arithmetic Operators • Let’s summarise • Addition: • Subtraction: • Multiplication: • Division: • Remainder: • Pre increment: Post increment: • Pre decrement: Post decrement:

  39. Pre/Post Increment/Decrement Operators • Pre increment/decrement - How they function: • 1.Increment/decrement the variable • 2.Take the value stored in the variable and evaluate the expression containing this variable with this value • Post increment/decrement - How they function: • 1.Take the value stored in the variable and evaluate the expression containing this variable with this value • 2.Increment/decrement the variable

  40. Assignment and Arithmetic Operators • x += y is equivalent to x = x + y • Also: • -= • *= • /= • %=

  41. Let’s try! • Evaluate the following fragments of Java code: • int var_1 = 10; int var_2 = 3; int result; result = var_1 / var_2; result = var_1 % var_2; • int count = 13; int result = 3 + count++ / 7; • Precedence – order of execution?

  42. Operator Precedence Trick: PEMDAS Parenthesis Exponents Multiplication Division Addition Subtraction 1.Perform the operations inside a parenthesis first 2.Then exponents 3.Then multiplication and division, from left to right 4.Then addition and subtraction, from left to right Reference: http://www.studygs.net/pemdas/

  43. About PEMDAS • Is a general rule • Applies to programming languages in general • Since Java does not have an exponent operator (like Python: 28 -> 2**8) • So, in Java, we can ignore the “E” in PEMDAS • To compute “exponent” in Java, we use the method Math.pow(…) of the Math class (Section 3.5 of our textbook)

  44. Back to … • Evaluate the following fragments of Java code: • int count = 13; int result = 3 + count++ / 7; How it is evaluated: 1. We start with count++ because it has the highest precedence • The first step of the evaluation of post increment is done, i.e., “Take the value stored in the variable and evaluate the expression containing this variable with this value” -> 3 + 13 / 7; • The second step of the evaluation of post increment is done, i.e., “Increment/decrement the variable” -> count becomes 14 2. Then we consider the division: 13 / 7 -> 1 3. Then we consider the addition: 3 + 1 -> 4 4. 4 is assigned to result

  45. Activity • Evaluate the following Java code fragments: • 2 + 15 / 5 - 2 * 1 • int count = 13; int result = 3 + ++count / 7; • 3 + 9 / 7 * 2 % (2 – 9)

  46. Let’s try some more –What happens here? final int DOLLARS = 6; double money; money = DOLLARS;

  47. Data Conversion • Non-matching types can be converted • A widening conversion is automatic • e.g. from short to int • A narrowing conversion may lose information • e.g. from float to int • Three kinds of conversion: • Assignment • Promotion • Casting

  48. Assignment Conversion • Example: final int DOLLARS = 6; double money; money = DOLLARS; • Only works for widening conversion

  49. Promotion • Example: int count = 2; float mass = 18.342f; mass = mass / count; • Arithmetic operator expecting floating point values will promote int to float

More Related