computational expression
play

Computational Expression Computer and Java Basics Janyl Jumadinova - PowerPoint PPT Presentation

Computational Expression Computer and Java Basics Janyl Jumadinova 16 September, 2019 Janyl Jumadinova Computational Expression 16 September, 2019 1 / 17 Variables Variable is a name for a memorys location where a data value is stored.


  1. Computational Expression Computer and Java Basics Janyl Jumadinova 16 September, 2019 Janyl Jumadinova Computational Expression 16 September, 2019 1 / 17

  2. Variables Variable is a name for a memory’s location where a data value is stored. Janyl Jumadinova Computational Expression 16 September, 2019 2 / 17

  3. Variables Variable is a name for a memory’s location where a data value is stored. Variable Declaration allows the compiler to reserve space in the main memory that is large enough for the specified type int count; Janyl Jumadinova Computational Expression 16 September, 2019 2 / 17

  4. Variables Variable is a name for a memory’s location where a data value is stored. Variable Declaration allows the compiler to reserve space in the main memory that is large enough for the specified type int count; Variable Assignment assigns a value to the variable count = 0; Janyl Jumadinova Computational Expression 16 September, 2019 2 / 17

  5. Variables Variable is a name for a memory’s location where a data value is stored. Variable Declaration allows the compiler to reserve space in the main memory that is large enough for the specified type int count; Variable Assignment assigns a value to the variable count = 0; Must give a value to the variable before using it in the main method. Janyl Jumadinova Computational Expression 16 September, 2019 2 / 17

  6. Memory Concepts Variable names correspond to locations in the computer’s memory. Janyl Jumadinova Computational Expression 16 September, 2019 3 / 17

  7. Memory Concepts Variable names correspond to locations in the computer’s memory. Every variable has: - a name, - a type, - a size, - a value Janyl Jumadinova Computational Expression 16 September, 2019 3 / 17

  8. Memory Concepts Variable names correspond to locations in the computer’s memory. Every variable has: - a name, - a type, - a size, - a value first = input.nextInt(); stores whatever the user types into the location associated with first . Janyl Jumadinova Computational Expression 16 September, 2019 3 / 17

  9. Data Types Data stored in memory is a string of bits (0 or 1) Janyl Jumadinova Computational Expression 16 September, 2019 4 / 17

  10. Data Types Data stored in memory is a string of bits (0 or 1) How the computer interprets the string of bits depends on the context. In Java, we must make the context explicit by specifying the type of the data. Janyl Jumadinova Computational Expression 16 September, 2019 4 / 17

  11. Data Types Java has two categories of data: primitive data (e.g., number, character) object data (programmer created types) There are 8 primitive data types: byte, short, int, long, float, double, char, boolean Primitive data are only single values; they have no special capabilities. Janyl Jumadinova Computational Expression 16 September, 2019 5 / 17

  12. Primitive Data Types integers: byte, short, int, long floating point: float, double characters: char booleans: boolean Janyl Jumadinova Computational Expression 16 September, 2019 6 / 17

  13. Common Primitive Data Types Type Description Example of Literals int integers (whole numbers) 42, 60634, -8 real numbers 0.039, -10.2 double char single characters ’a’, ’B’, ’&’, ’6’ logical values true, false boolean Janyl Jumadinova Computational Expression 16 September, 2019 7 / 17

  14. Range of Values Type Storage Range of Values int 32 bits -2,147,483,648 to 2,147,483,647 ± 10 − 45 to ± 10 38 64 bits double 0 to 2 16 or \ u0000 to \ uFFFF char 16 bits = 2 bytes 1 bit NA boolean Janyl Jumadinova Computational Expression 16 September, 2019 8 / 17

  15. Literal A constant value in Java is created by using a literal representation of it. 100 ( integer literal ) 98 . 6 ( float literal ) ′ X ′ ( character literal ) ‘‘This is a test’’ ( String literal ) Janyl Jumadinova Computational Expression 16 September, 2019 9 / 17

  16. Constants Constants hold the same value during their existence. Can use a keyword final before the type and name of the variable: - always contains the same value. final int MAX BUDGET = 1000 Janyl Jumadinova Computational Expression 16 September, 2019 10 / 17

  17. Expression Expression is a combination of one or more operators (+ , − , % , ... ) and operands (literals, constants, variables,...) Janyl Jumadinova Computational Expression 16 September, 2019 11 / 17

  18. Order of Precedence Operators are evaluated in an expression according to the rules of precedence. Janyl Jumadinova Computational Expression 16 September, 2019 12 / 17

  19. Order of Precedence Operators are evaluated in an expression according to the rules of precedence. Operators within ( ) are evaluated first. *, /, % evaluated next (L to R). +, - evaluated last (L to R). Janyl Jumadinova Computational Expression 16 September, 2019 12 / 17

  20. Conversion Widening - from byte to short, int, long, float or double - from short to int, long, float, double - from char to int, long, float, double - from int to long, float, double - from long to float, double - from float to double Janyl Jumadinova Computational Expression 16 September, 2019 13 / 17

  21. Conversion Narrowing - should be avoided! - from byte to char - from short to byte, char - from char to byte, short - from int to byte, short, char - from long to byte, short, char, int - from float to byte, short, char, int, long - from double to byte, short, char, int, long, float Janyl Jumadinova Computational Expression 16 September, 2019 14 / 17

  22. Conversion Assignment: grade = ‘A’ Promotion: total/count , where total is a floating point value and count is an integer - Occurs automatically, count is promoted to a floating point value Casting: grade = (int) total - Java operator: type name in parentheses - Casting converts floating point value total into an integer, truncating any fractional part. Janyl Jumadinova Computational Expression 16 September, 2019 15 / 17

  23. Scanner The Scanner class in the java.util package is a simple text scanner which can parse primitive types and strings. We can use the Scanner class to get the input. Janyl Jumadinova Computational Expression 16 September, 2019 16 / 17

  24. Scanner The Scanner class in the java.util package is a simple text scanner which can parse primitive types and strings. We can use the Scanner class to get the input. We must first create an instance of the Scanner as: Scanner name = new Scanner (System.in); to read from the terminal, Janyl Jumadinova Computational Expression 16 September, 2019 16 / 17

  25. Scanner The Scanner class in the java.util package is a simple text scanner which can parse primitive types and strings. We can use the Scanner class to get the input. We must first create an instance of the Scanner as: Scanner name = new Scanner (System.in); to read from the terminal, or Scanner name = new Scanner (File filename); to read from the file, where File filename = new File (”input.txt”); and name is the name you choose for your instance of the Scanner Janyl Jumadinova Computational Expression 16 September, 2019 16 / 17

  26. Scanner Methods next() : get the next word (token) as a String nextLine() : get a line of input as a String nextInt() : get an integer nextDouble() : get a double value nextFloat() : get a float value Janyl Jumadinova Computational Expression 16 September, 2019 17 / 17

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend