Expressions and Data Types CSC 121 Spring 2015 Howard Rosenthal

Similar documents
Expressions and Data Types CSC 121 Fall 2015 Howard Rosenthal

Expressions and Data Types CSC 121 Spring 2017 Howard Rosenthal

CS5000: Foundations of Programming. Mingon Kang, PhD Computer Science, Kennesaw State University

Program Fundamentals

CSC 1214: Object-Oriented Programming

BIT Java Programming. Sem 1 Session 2011/12. Chapter 2 JAVA. basic

JAVA Programming Fundamentals

DEPARTMENT OF MATHS, MJ COLLEGE

3. Java - Language Constructs I

Programming Lecture 3

Computer Components. Software{ User Programs. Operating System. Hardware

Java Notes. 10th ICSE. Saravanan Ganesh

Basics of Java Programming

Accelerating Information Technology Innovation

2 rd class Department of Programming. OOP with Java Programming

COMP 202 Java in one week

Computer Components. Software{ User Programs. Operating System. Hardware

BASIC ELEMENTS OF A COMPUTER PROGRAM

CMPT 125: Lecture 3 Data and Expressions

5/3/2006. Today! HelloWorld in BlueJ. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont.

cis20.1 design and implementation of software applications I fall 2007 lecture # I.2 topics: introduction to java, part 1

LESSON 1. A C program is constructed as a sequence of characters. Among the characters that can be used in a program are:

Language Fundamentals Summary

Lecture 2: Variables and Operators. AITI Nigeria Summer 2012 University of Lagos.

UNIT- 3 Introduction to C++

JAVA OPERATORS GENERAL

Operators. Java operators are classified into three categories:

Full file at

Declaration and Memory

Chapter 3: Operators, Expressions and Type Conversion

Data and Variables. Data Types Expressions. String Concatenation Variables Declaration Assignment Shorthand operators. Operators Precedence

ECE 122 Engineering Problem Solving with Java

Getting started with Java

Objects and Types. COMS W1007 Introduction to Computer Science. Christopher Conway 29 May 2003

A Java program contains at least one class definition.

SECTION II: LANGUAGE BASICS

CSCI 2010 Principles of Computer Science. Data and Expressions 08/09/2013 CSCI

4 Programming Fundamentals. Introduction to Programming 1 1

Character Set. The character set of C represents alphabet, digit or any symbol used to represent information. Digits 0, 1, 2, 3, 9

Java provides a rich set of operators to manipulate variables. We can divide all the Java operators into the following groups:

The Java Language Rules And Tools 3

Java Identifiers. Java Language Essentials. Java Keywords. Java Applications have Class. Slide Set 2: Java Essentials. Copyright 2012 R.M.

Java Programming Fundamentals. Visit for more.

The Arithmetic Operators. Unary Operators. Relational Operators. Examples of use of ++ and

Le L c e t c ur u e e 2 To T p o i p c i s c t o o b e b e co c v o e v r e ed e Variables Operators

The Arithmetic Operators

C: How to Program. Week /Mar/05

DM550 / DM857 Introduction to Programming. Peter Schneider-Kamp

A complex expression to evaluate we need to reduce it to a series of simple expressions. E.g * 7 =>2+ 35 => 37. E.g.

Expressions, Data Types, Formatted Printing, Scanning CSC 123 Fall 2018 Howard Rosenthal

CSc 10200! Introduction to Computing. Lecture 2-3 Edgardo Molina Fall 2013 City College of New York

Fundamental of Programming (C)

An overview of Java, Data types and variables

Chapter 2: Data and Expressions

Basic operators, Arithmetic, Relational, Bitwise, Logical, Assignment, Conditional operators. JAVA Standard Edition

Features of C. Portable Procedural / Modular Structured Language Statically typed Middle level language

Tools : The Java Compiler. The Java Interpreter. The Java Debugger

Fundamentals of Programming

Data and Expressions. Outline. Data and Expressions 12/18/2010. Let's explore some other fundamental programming concepts. Chapter 2 focuses on:

A variable is a name that represents a value. For

Programming in C++ 5. Integral data types

CS313D: ADVANCED PROGRAMMING LANGUAGE

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS

Operators in java Operator operands.

For the course, we will be using JCreator as the IDE (Integrated Development Environment).

CHAPTER 2 Java Fundamentals

Last Time. University of British Columbia CPSC 111, Intro to Computation Alan J. Hu. Readings

COMP Primitive and Class Types. Yi Hong May 14, 2015

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 3

Chapter 2 - Introduction to C Programming

DM550 Introduction to Programming part 2. Jan Baumbach.

Chapter 6 Primitive types

C OVERVIEW BASIC C PROGRAM STRUCTURE. C Overview. Basic C Program Structure

Chapter 2. Elementary Programming

Objectives. Chapter 2: Basic Elements of C++ Introduction. Objectives (cont d.) A C++ Program (cont d.) A C++ Program

Chapter 2: Basic Elements of C++

Review: Exam 1. Your First C++ Program. Declaration Statements. Tells the compiler. Examples of declaration statements

Chapter 2: Data and Expressions

Chapter 2: Basic Elements of C++ Objectives. Objectives (cont d.) A C++ Program. Introduction

Visual C# Instructor s Manual Table of Contents

C OVERVIEW. C Overview. Goals speed portability allow access to features of the architecture speed

CS113: Lecture 3. Topics: Variables. Data types. Arithmetic and Bitwise Operators. Order of Evaluation

CS 106 Introduction to Computer Science I

Java provides a rich set of operators to manipulate variables. We can divide all the Java operators into the following groups:

3. Java - Language Constructs I

Ex: If you use a program to record sales, you will want to remember data:

Course Outline. Introduction to java

Object-Oriented Programming

Lecture 3. More About C

Informatics Ingeniería en Electrónica y Automática Industrial

Introduction to C# Applications

CONTENTS: Compilation Data and Expressions COMP 202. More on Chapter 2

Chapter. Let's explore some other fundamental programming concepts

COMP-202 Unit 2: Java Basics. CONTENTS: Using Expressions and Variables Types Strings Methods

ME 461 C review Session Fall 2009 S. Keres

The MaSH Programming Language At the Statements Level

Java for Python Programmers. Comparison of Python and Java Constructs Reading: L&C, App B

Index COPYRIGHTED MATERIAL

ANSI C Programming Simple Programs

Operators and Expressions

Transcription:

Expressions and Data Types CSC 121 Spring 2015 Howard Rosenthal

Lesson Goals Understand the basic constructs of a Java Program Understand how to use basic identifiers Understand simple Java data types and the operations on those types Understand how to write and evaluate expressions Understand the concept of casting 2

Key Terms and Definitions public class Hello { public static void main ( String[] args ) { System.out.println("Hello World!"); } } Above is the source program (source file). The purpose of this program is to type the characters Hello World! on the monitor. The file must be named Hello.java to match the name of the class. The upper and lower case characters of the file name are important. (So if the file is named hello.java with a small h it will not work). On all computers, upper and lower case inside the program are important. The first line class Hello says that this source program defines a class called Hello. A class is a section of a program. Small programs often consist of just one class. When the program is compiled, the compiler will make a file of bytecodes called Hello.class. 3

Key Terms and Definitions (2) Braces For every left brace { there is a right brace } that matches. Usually there will be sets of matching braces inside other sets of matching braces. The first brace in a class (a left brace) will match the last brace in that class (a right brace). A brace can match just one other brace. Use indenting to show how the braces match (and thereby show the logic of the program). Look at the example. Increase the indenting by three spaces for statements inside a left and right brace. If another pair of braces is nested within those braces, increase the indenting for the statements they contain by another three spaces. Line up the braces vertically. With Notepad++ the indent levels for both braces and parentheses are color coded 4

Key Terms and Definitions (3) Most classes contain many more lines than this one. Everything that makes up a class is placed between the first brace { and its matching last brace }. The name of the class (and therefore the name of the file) is up to you. By convention the first letter of a class is typically upper case. A source file always end with.java in lower case. Therefore the file name is Classname.java In programming, the name for something like a class is called an identifier. An identifier consists of alphabetical characters and digits. The first character must be alphabetical, the remaining characters can be mixed alphabetic characters and digits (plus the two characters '_' and '$' - underscore and dollar sign). No spaces are allowed inside the name. An expression is a sequence of symbols (identifiers, operators, constants, etc.) that denote a value 5

Key Terms and Definitions (4) A reserved word is a word like class that has a special meaning to the system. For example, class means that a definition of a class immediately follows. You must use reserved words only for their intended purpose. (For example, you can't use the word class for any other purpose than defining a class.) Page 25 0f the text lists reserved words A statement in a programming language is a command for the computer to do something. It is like a sentence of the language. A statement in Java is always followed by a semicolon. A group of statements within a set of braces is called a block Methods are built out of statements. The statements in a method are placed between braces { and } as in this example. A method is a section of a class that performs a specific task All programs start with the Main method The part "Hello World!" is called a String. A String is a sequence of characters. This program writes a String to the monitor and then stops. 6

Key Terms and Definitions (4) The table below lists all the words that are reserved java: abstract assert boolean break byte case catch char class const* continue default double do else enum extends false final finally float for goto* if implements import instanceof int interface long native new null package private protected public return short static strictfp super switch synchronized this throw throws transient true try void volatile while *Even though goto and const are no longer used in the Java programming language, they still cannot be used. 7

Comments A single line comment begins with // This // can come at the beginning of the line or after a statement on the line : System.out.println("On a withered branch" ); // Write first line of the poem Multiline comments begin/* and end */ /* Program 1 Write out three lines of a poem. The poem describes a single moment in time, using 17 syllables. */ 8

Data Types and Operators A data type is a set of values together with an associated set of operators for manipulating those values. Who can think of some basic data types in the numerical world? The logical world? When an identifier is used as a variable it always has a defined data type The meaning of the 0 s and 1 s in the computer depends on the data type being represented We will begin by using the int, double, char and boolean data types all lower case Later in the course we ll make use of additional data types including byte, short, long, and float 9

Data Types and Operators (2) All data in Java falls into one of two categories: primitive data and objects. There are only eight primitive data types - int, double, char, boolean, byte, short, long, and float. However, Java has many types of objects, and you can invent as many others as you need. Any data type you invent will be a type of object. Much more will be said about objects in future chapters (since Java is a object oriented programming language). The following is all you need to know, for now: A primitive data value uses a small, fixed number of bytes. There are only eight primitive data types. A programmer can not create new primitive data types. 10

Some Notes on Objects An object is a big block of data. An object may use many bytes of memory. An object usually consists of many internal pieces. The data type of an object is called its class. Many classes are already defined in Java. A programmer can invent new classes to meet the particular needs of a program. 11

Primitive Numeric Data Types Numbers are so important in Java that 6 of the 8 primitive data types are numeric types. There are both integer and floating point primitive types. Integer types have no fractional part; floating point types have a fractional part. On paper, integers have no decimal point, and floating point types do. But in main memory, there are no decimal points: even floating point values are represented with bit patterns. There is a fundamental difference between the method used to represent integers and the method used to represent floating point numbers. Each primitive type uses a fixed number of bits. This means that if you are using a particular data type then the same number of bits will be used no matter what value is represented. For example, all values represented using the short data type use 16 bits. The value zero (as a short) uses 16 bits and the value thirty thousand uses 16 bits. All values represented using the long data type use 64 bits. The value zero (as a long) uses 64 bits, the value thirty thousand uses 64 bits, and the value eight trillion uses 64 bits. Values that are large in magnitude (negative or positive) need more bits to be represented. This is similar to writing out numbers on paper: large numbers need more digits. If a value needs more bits than a particular data type uses, then it cannot be represented using that data type. In the tables, E means "ten to the power of". So 3.5E38 means 3.5 x 10 38 12

Primitive Numeric Data Types (2) Integer Primitive Data Types Type Size Range byte 8 bits -128 to +127 short 16 bits -32,768 to +32,767 int long 32 bits 64 bits -2 billion to +2 billion (approximately) -9E18 to +9E18 (approximately) Remember: Integer data types reserve the leftmost bit to indicate positive (o) or negative (-1) in two s complement format Floating Point Primitive Data Types Type Size Range float 32 bits -3.4E38 to +3.4E38 double 64 bits -1.7E308 to 1.7E308 13

Numeric Operators Operator Meaning precedence - unary minus highest + unary plus highest * multiplication middle / division middle % remainder /modulus middle + addition low - subtraction low 14

Numeric Operators (2) All of these operators can be used on floating point numbers and on integer numbers. The % operator is rarely used on floating point. When mixing floating point numbers and integer numbers, floating point takes precedence this is called casting An integer operation is always done with 32 bits or more. If one or both operand is 64 bits (data type long) then the operation is done with 64 bits. Otherwise the operation is done with 32 bits, even if both operands are smaller than 32 bits. For example, with 16 bit short variables, the arithmetic is done using 32 bits: 15

Integer Arithmetic In integer arithmetic you always truncate 7/2 = 3 11/4 = 2 The modulus operator gives you the remainder 7%4 = 3 9%2 =? Any ideas on where the % can be helpful? Note: the sign of the result of a%b is always the sign of a (the dividend). 16

Mixed Arithmetic Arithmetic If both operands are integers, then the operation is an integer operation. If any operand is double, then the operation is double. 7.1+7.4 = 14.5 7.0+7.4 = 14.4 7+7.4 = 14.4 (15/2) +7.4 =? (15%2) + 7.4 =? Note: Unless otherwise declared all decimals are assumed to be of type double 17

Type char Type char is the set of all characters found on the standard keyboard, and thousands of other characters as well. Type char is denoted using single quotes A, 5 Characters are typically stored in ASCII code in single bytes Java uses Unicode 2 byte representations that increases the number of characters that can be represented from 255 to 65536 unique characters Note: Keyboard letters in ASCII Code and Unicode have the same value i.e. A = 65 ie 01000001 in ASCII or 00000000010000001 in Unicode You can add and subtract type char they are actually treated like integers when adding i.e. A +1 = B 0r 0000000001000010 i.e. 66 18

String A String is an object, not a basic data type. A String is a sequence of characters enclosed in double quotes Java provides a String class Strings can be concatenated I am + a man = I am a man Strings and values Everything depends on the order The sum of two numbers is + (5*2) prints as The sum of two numbers is 10 Why? You always work from inside the parentheses outwards However ( The sum of two numbers is 5 ) + 2 prints as The sum of two numbers is 52 In Chapter 9 we do a lot more with String objects 19

Type boolean Type boolean identifiers can have only one of two values true or false. There are three operators && - means and - means or! - means not p q p&&q (and) p q (or)!p (not true true true true false true false false true false false true false true true false false false false true 20

Switches and Boolean Logic A A A X Y B To get from A to B both X and Y must be closed X&&Y X A B Y To get from A to B either X or Y must be closed X Y 21

Relational Operators Operator Description Example (with A=2, B=5 == Checks if the value of two operands are equal or not, if yes then condition becomes true. (A == B) is not true.!= > < Checks if the value of two operands are equal or not, if values are not equal then condition becomes true. Checks if the value of left operand is greater than the value of right operand, if yes then condition becomes true. Checks if the value of left operand is less than the value of right operand, if yes then condition becomes true. (A!= B) is true. (A > B) is not true. (A < B) is true. >= <= Checks if the value of left operand is greater than or equal to the value of right operand, if yes then condition becomes true. Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true. (A >= B) is not true. (A <= B) is true. The result of applying a relational operator is a true or false value 22

When in doubt use parentheses The hierarchy is very similar to what you know from algebra When there is an equivalent hierarchy level and no parentheses you evaluate from left to right Operator Hierarchy Priority Operators Operation Associativity [ ] array index 1 () method call left. member access ++ pre- or postfix increment -- pre- or postfix decrement + - unary plus, minus 2 ~ bitwise NOT right! boolean (logical) NOT (type) type cast new object creation 3 * / % multiplication, division, remainder left + - addition, subtraction 4 left + String concatenation << signed bit shift left 5 >> signed bit shift right left >>> unsigned bit shift right < <= less than, less than or equal to 6 > >= greater than, greater than or equal to left instanceof reference test == equal to 7 left!= not equal to & bitwise AND 8 left & boolean (logical) AND ^ bitwise XOR 9 left ^ boolean (logical) XOR bitwise OR 10 left boolean (logical) OR 11 && boolean (logical) AND left 12 boolean (logical) OR left 13? : conditional right = assignment *= /= += -= %= 14 right <<= >>= combinated assignment >>>= &= ^= = 23

5>4 true 4>5 false A < B true (5>4) (4>5) -? (5>4) && (4>5) -? Some Examples 24

Casting When evaluating any expression with operands of different types Java first promotes or casts the operand of the smaller data type By smaller we mean the range byte is smaller than short which is smaller than int which is smaller than long which is smaller than float which is smaller than double boolean expressions are not cast char automatically casts up to int, not to short 25

Mixing Data Types Remember that without parentheses you follow the hierarchy Mixed integer/decimal addition is cast to decimal when the mixing occurs (10.0+5) = 15.0 10/4*(18.0) = 36.0 (5/9) *(212.0-32.0) = 0 Note: Integers can be of type byte, short, int, long Decimal can be of type double or float 26

Casting With Strings and Characters A + B = 131 (integer) A + B = AB (String) A + B = AB (String) + A + B = AB (String) A gets cast to String A + B + = 131 (String) 3 + 4 + = 7 (String) + 3 + 4 = 34 (String) Key is that without parentheses we are reading left to right 27

Printing and Special Characters System.out.println( abc ) // prints the String and a character return System.out.print ( abc ) // prints a String without a character return Escape sequences inside the String can be used control printing Escape Sequence Character \n newline \t tab \b backspace \f form feed \r return \" " (double quote) \' ' (single quote) \\ \ (back slash) \udddd character from the Unicode character set (DDDD is four hex digits) 28

Printing Example public class Printanode { public static void main (String[] args) { System.out.println ( He wrote his code ); System.out.print( \the indented well\n ); System.out.println( \ttill he was done ); System.out.print( \nthe Author ); } } He wrote his code He indented well Till he was done The Author 29

Evaluate as true or false true false && 3 < 4!(5==7) Some Other Examples (true (false && (3 < 4)))!(5==7) putting in the parentheses correctly always helps (true (false && true))!false (true false) true true true true 30

Exercise 6. Triangle Programming Exercise - Class (1) Write a program that prints the triangle: * ** *** **** ***** ****** 31

Programming Exercise - Lab (1) Exercise 7. Triangle With Initials Write a program that prints the triangle: * ** *H* **G* ***R* ****** 32