Presentation is loading. Please wait.

Presentation is loading. Please wait.

CompSci 001 8.1 Today’s topics Parsing Java Programming Notes from Tammy Bailey Reading Great Ideas, Chapter 3 & 4.

Similar presentations


Presentation on theme: "CompSci 001 8.1 Today’s topics Parsing Java Programming Notes from Tammy Bailey Reading Great Ideas, Chapter 3 & 4."— Presentation transcript:

1 CompSci 001 8.1 Today’s topics Parsing Java Programming Notes from Tammy Bailey Reading Great Ideas, Chapter 3 & 4

2 CompSci 001 8.2 Java programs l Java programs are created as text files using a text editor (like emacs) Save to disk with.java file extension HelloWorld.java l The file contains characters (stored as bytes) à file can be printed, displayed on monitor, or edited à file cannot be directly executed (run) by the computer system l Java must first translate the program into bytecodes before it can be run

3 CompSci 001 8.3 Java Details l Java tutorial http://java.sun.com/docs/books/tutorialhttp://java.sun.com/docs/books/tutorial 1. Do “Your First Cup of Java” and create your First Applet 2. Go to “Learning the Java Language” and read “Language Basics” l Variable: an item of data named by an identifier l Operators à Arithmetic à Relational and conditional à Assignment à Other l Expression: a series of variables, operators, and method calls that evaluates to a single value

4 CompSci 001 8.4 Bytecodes l Java bytecode à machine instruction for the Java processor Java compiler javac translates the source program into bytecodes Bytecode file has same name as the source program with a.class file extension: HelloWorld.class HelloWorld.javajavacHelloWorld.class source program Java compiler Java bytecodes

5 CompSci 001 8.5 Java Virtual Machine (JVM) l Bytecode (class) file will contain exactly the same bytecodes no matter what computer system is used l Bytecode file is executed by a Java bytecode interpreter à processor specific executable program l Each type of computer system has its own Java interpreter that can run on that system l Any computer system can execute Java bytecode programs if it has a Java interpreter l Computers with Java interpreters are called Java Virtual Machines à a “computer” with a Java processor that can run Java bytecodes

6 CompSci 001 8.6 Java applets l An applet is a Java bytecode program that runs on a Web browser l Most newer Web browsers have Java interpreters l Web pages on the Internet contain instructions that send Java bytecodes to your computer l Web browser runs the Java applet with its built-in interpreter

7 CompSci 001 8.7 Data types l Computer memory stores arbitrary bit patterns l Meaning of a bit pattern depends on its use l Pattern used for a particular string of bits is a data type à values are any kind of data a computer can process à all values are represented using some data type l Example: What does the following pattern of 16 bits represent? 0000000001100111 l No way to know without more information If data type is short (a Java type) it represents 103

8 CompSci 001 8.8 Java data types l Primitive à types of data that are so fundamental ways to represent them are built into Java l Object à built-in or user-defined

9 CompSci 001 8.9 Primitive data types l All primitive values belong to one of eight primitive types byte short int long float double char boolean l Primitive data types use a fixed number of bytes  four of these types designate different sizes of bounded integers: byte, short, int, long l A programmer can not create new primitive data types l Any data type you invent will be a type of object Most commonly used types in practice: int, boolean, and double

10 CompSci 001 8.10 Java primitive data types Primitive TypeDescriptionRange byte 8-bit integer-128 to 127 short 16-bit integer-32768 to 32767 int 32-bit integer -2147483648 to 2147483647 long 64-bit integer-2 63 to 2 63 -1 float 32-bit floating point10 -46 to 10 38 double 64-bit floating point10 -324 to 10 308 char Unicode character boolean Boolean variable false and true

11 CompSci 001 8.11 Basic operators OperatorJavaDescription Assignment = assigns rhs to lhs Arithmetic +,-,*,/,% addition, subtraction, multiplication, division, remainder Unary -,++,-- negative, auto increment, auto decrement Equality ==, != equals to, not equals to Relational,>= less than, less than or equals to, greater than, greater than or equals to Logical &&,||,! AND, OR, NOT

12 CompSci 001 8.12 Variable declaration Declaration type ; l Declaration + initialization: type = ; l Variable names à any combination of letters, numbers, and the underscore character à may not start with number à may not be reserved word e.g. int, return, if, for, while à may not be same as a subroutine name  case-sensitive ( num and Num are different)

13 CompSci 001 8.13 Examples l int x, y, z; l int sum = 0; l float f; l double pi = 3.14; l char first = ‘T’, middle = ‘L’, last = ‘B’; l char first = ‘T’; char middle = ‘L’; char last = ‘B’;

14 CompSci 001 8.14 Operator precedence l Evaluate a + b * c à multiplication first? a + (b * c) à addition first? ( a + b) * c l Java solves this problem by assigning priorities to operators ( operator precedence ) à operators with high priority are evaluated before operators with low priority à operators with equal priority are evaluated left to right Operator priority (highest to lowest) 1. ( ) 2. * / % 3. + - 4. =

15 CompSci 001 8.15 When in doubt, use parentheses l a + b * c = a + (b * c) à because * has higher priority than + l To perform the + operation first we need to use parentheses à (a + b) * c l If in any doubt use extra parentheses to ensure the correct order of evaluation à parentheses are free! à cause no extra work for the computer à only make it easier for you to work out what is happening

16 CompSci 001 8.16 Examples l Java adheres to traditional order of operations * and / have higher priority than + and – int x = 3 + 5 * 6;(x = 33) int y = (3 + 5) * 6;(y = 48) l Parentheses are free, use them liberally int z = ((3 + 5) * (6));(z = 48) l Equal priority operations are evaluated left-to-right in the absence of parentheses int w = 3 * 4 / 2 * 6;(w = 36) int x = 3 * 4 / (2 * 6);(x = 1) int y = 3 * 4 + 2 * 6;(y = 24) int z = 3 * (4 + 2) * 6;(z = 108)

17 CompSci 001 8.17 Syntax and semantics Addition, subtraction: + and –, int and double int x = 21+4; (x = 25) double y = 14.1-2;(y = 12.1) Multiplication: *, int and double int x = 21*4;(x = 84) double y = 14.1*2.5;(y = 35.25) Division: /, different for int and double int x = 21/4;(x = 5) double y = 21/4;(y = 5.0) double y = 21/4.0;(y = 5.25) Modulus: %, only for int int x = 21%4; (x = 1)

18 CompSci 001 8.18 Automatic type conversion l Mixed type expressions are converted to higher compatible types If all operands are of type int then result is type int If any operand is of type double then result is of type double l Cannot convert to a lower type l Conversion may result in loss of precision Example: Convert Fahrenheit to Celsius double F=41.0; double C=(F-32.0)*(5/9); Question: What is the value of C? a) 5 b) 0.0 c) 9.0 d) 5.0 e) 9

19 CompSci 001 8.19 More expressions int g = 12 + 2.5; What is the value of g? a. 0 b. 12 c. 14 d. 14.5 e. error int x = 8 * (7 – 6 + 5) % (4 + 3 / 2) – 1; What is the value of x? a. -1 b. 0 c. 2 d. 3 e. none of the above int n = 1 – 2 * 3 – (4 + 5); What is the value of n?

20 CompSci 001 8.20 Syntax errors l The following Java subroutine computes the inclusive sum between two integers. Find all the syntax errors. int sumBetween( x, y ) { int z = x; Int sum = 1; while( z <= y ){ sum = sum*z; z++ }

21 CompSci 001 8.21 Logic errors l The computer will do precisely what you say even though it may not be what you want l What is wrong with this code? int sumBetween( int x, int y ) { int z = x; int sum = 1; while( z <= y ) sum = sum*z; z++; }

22 CompSci 001 8.22 Java objects l Java is an object-oriented programming language à use objects to define both the data type and the operations that can be applied to the data l Objects have attributes and functionality à attributes describe the state of the object à the functionality of an object is the set of actions the object can perform l In Java, we define an object’s attributes using variables and its functionality using methods

23 CompSci 001 8.23 Real-world objects l Suppose we want to describe a car in terms of its attributes and functionality l Attributes:  int year; int mileage;  String make;String model;  boolean manual_transmission; l Methods:  void brake()  int getMileage()  boolean needsGas()  void shift(int gear)

24 CompSci 001 8.24 Java classes l Java objects are created using classes l Encapsulation à combining elements to create a new entity l A class encapsulates the variables and methods that define an object l Instantiation à the act of creating an object à objects are called class instances l Java provides many predefined classes l You can also define your own classes

25 CompSci 001 8.25 Java String class The String class represents character strings String first = “Tammy”; String last = “Bailey”; Strings can be concatenated (added together) using the concatenation operator + String fullname = first + “ ” + last; l Testing for equality: first.equals(“Tammy”); /* returns true */ first.equals(“Amy”); /* returns false */

26 CompSci 001 8.26 Instantiation l Creating an object is called instantiation  the new operator is used with class name Example: Create a TextField object TextField t = new TextField(); l Can create multiple instances of the same class TextField t1 = new TextField(); TextField t2 = new TextField(); l Exception  the new operator is not required when creating a String

27 CompSci 001 8.27 Java TextField class The TextField class allows the editing and display of a single line of text TextField t = new TextField(); l Methods à setText(String s) set the text of the field to the string s à String getText() get the text of the field and assign it to a variable of type string

28 CompSci 001 8.28 Invoking an object’s methods l Once we create a text field, we can perform actions on it using its methods l The variables and methods of an object are accessed using the dot operator TextField t = new TextField(); t.setText(“Hello”); l Syntax  object.verb(data); à Perform verb on object using data

29 CompSci 001 8.29 Interactive objects l User interaction determines the behavior of the program l Program receives user input through mouse and keyboard and performs associated method or action l Text fields à edit and display single line of text l Buttons à can specify action to occur when button is clicked

30 CompSci 001 8.30 Action listeners l If we want a button to know when it is clicked, we have to enable it to “listen” for user input Use the button method addActionListener Button b = new Button(“click!”); b.addActionListener(this); If we don’t invoke the addActionListener method on a button, nothing will happen when the button is clicked

31 CompSci 001 8.31 Example l We would like our applet to do the following:  get text from text field t1 and display it in text field t2 when button b is clicked TextField t1 = new TextField(); TextField t2 = new TextField(); Button b = new Button(“copy text”); b.addActionListener(this);

32 CompSci 001 8.32 Think about it Puzzle: Toggling Frogs à You have 100 light switches, numbered 1-100, and 100 frogs, also numbered 1- 100. à Whenever a frog jumps on a light switch, it toggles a light between on and off. All lights are initially off. frog #1 jumps on every light switch (ie turning them all on). frog #2 jumps on every 2nd light switch, toggling some of them back off.... frog #k jumps on every kth light switch.  After 100 frogs, which lights are on? Game: Don’t be last à You and a friend have a stack of 10 coins. à On each person's turn, they remove either 1 or 2 coins from the stack. à The person who removes the last coin wins. à What is a winning strategy? Should you go first or second?


Download ppt "CompSci 001 8.1 Today’s topics Parsing Java Programming Notes from Tammy Bailey Reading Great Ideas, Chapter 3 & 4."

Similar presentations


Ads by Google