CS 363 Comparative Programming Languages Expressions and Assignment Statements.

Slides:



Advertisements
Similar presentations
ISBN Chapter 7 Expressions and Assignment Statements.
Advertisements

CS 355 – PROGRAMMING LANGUAGES Dr. X. Topics Introduction Arithmetic Expressions Overloaded Operators Type Conversions Relational and Boolean Expressions.
ISBN Chapter 7 Expressions and Assignment Statements.
COEN Expressions and Assignment
Copyright © by Curt Hill Expressions and Assignment Statements Part 2.
Chapter 7 Expressions and Assignment Statements. Copyright © 2012 Addison-Wesley. All rights reserved.1-2 Chapter 7 Topics Introduction Arithmetic Expressions.
ISBN Chapter 7 Expressions and Assignment Statements.
1 Chapter 7: Expressions Expressions are the fundamental means of specifying computations in a programming language To understand expression evaluation,
CS2403 Programming Languages Expressions and Assignment Statements Chung-Ta King Department of Computer Science National Tsing Hua University (Slides are.
CSE 452: Programming Languages Expressions and Control Flow.
Chapter 7 Expressions and Assignment Statements. Copyright © 2007 Addison-Wesley. All rights reserved. 1–2 Arithmetic Expressions Arithmetic evaluation.
ISBN Chapter 7 Expressions and Assignment Statements.
ISBN Chapter 7 Expressions and Assignment Statements.
ISBN Lecture 07 Expressions and Assignment Statements.
Expressions, Evaluation and Assignments
Expressions & Assignments One of the original intentions of computer programs was the evaluation of mathematical expressions –languages would inherit much.
ISBN Chapter 7 Expressions and Assignment Statements.
Copyright © 1998 by Addison -Wesley Longman, Inc. 1 Chapter 6 Arithmetic Expressions - Their evaluation was one of the motivations for the development.
1-1 University of Hail College of Computer Science and Engineering Department of computer Science and Software Engineering Course: ICS313: Fundamentals.
7-1 Chapter 7: Expressions and Assignment Statements Arithmetic Expressions –the fundamental means of specifying computations in a programming language.
Expressions creating information. topics  operators: precedence, associativity, parentheses, overloading  operands: side-effects, coercion  arithmetic,
Chapter 7 Expressions and Assignment Statements. Chapter 7 Topics 1-2 Introduction Arithmetic Expressions Overloaded Operators Type Conversions Relational.
Ryan Chu. Arithmetic Expressions Arithmetic expressions consist of operators, operands, parentheses, and function calls. The purpose is to specify an.
Chapter 7 Expressions and Assignment Statements. Copyright © 2007 Addison-Wesley. All rights reserved. 1–2 Arithmetic Expressions Arithmetic evaluation.
ISBN Chapter 7 Expressions and Assignment Statements.
COMP4730/2002/lec7/H.Melikian Arithmetic Expressions Overloaded Operators Type Conversations Relational and Boolean Expressions Short Circuit Evaluation.
C H A P T E R S E V E N Expressions and Assignment Statements.
CPS 506 Comparative Programming Languages Names, Scope, Expression.
PLLab, NTHU,Cs2403 Programming Languages Expression and control structure Kun-Yuan Hsieh Programming Language Lab., NTHU.
1 Chapter 7 Expressions and Assignment statements.
C HAPTER 7 Expressions and Assignment Statements.
Arithmetic Expressions
Expressions and Assignment Statements
Chapter 7 Expressions and Assignment Statements. Copyright © 2009 Addison-Wesley. All rights reserved.1-2 Chapter 7 Topics Introduction Arithmetic Expressions.
ISBN Chapter 7 Expressions and Assignment Statements.
Chapter 7 © 1998 by Addison -Wesley Longman, Inc Arithmetic Expressions - Their evaluation was one of the motivations for the development of the.
Chapter 7 Expressions and Assignment Statements. Outline Introduction Arithmetic Expressions Overloaded Operators Type Conversions Assignment Statements.
ISBN Chapter 7 Expressions and Assignment Statements.
1 CS Programming Languages Class 09 September 21, 2000.
March 31, ICE 1341 – Programming Languages (Lecture #11) In-Young Ko Programming Languages (ICE 1341) Lecture #11 Programming Languages (ICE 1341)
Chapter Seven: Expressions and Assignment Statements Lesson 07.
1 CS Programming Languages Class 10 September 26, 2000.
ISBN Chapter 7 Expressions and Assignment Statements.
Chapter 7 Expressions and Assignment Statements. Copyright © 2012 Addison-Wesley. All rights reserved.1-2 Chapter 7 Topics Introduction Arithmetic Expressions.
ISBN Chapter 7 Expressions and Assignments Statements.
7-1/27 Chapter 7 Expressions and Assignment Statements Introduction Arithmetic Expressions Overloaded Operators Type Conversions Relational and Boolean.
Expressions and Assignment Statements
Expressions and Assignment Statements
7.2 Arithmetic Expressions
Chapter 7: Expressions and Assignment Statements
Expressions and Assignment Statements
Expressions and Assignment Statements
Expressions and Assignment Statements
CS2403 Programming Languages Expressions and Assignment Statements
Chapter 7: Expressions and Assignment Statements
Expressions and Assignment Statements
Expressions & Assignments
Expressions and Assignment Statements
Arithmetic Expressions
Expressions and Assignment Statements
Expressions and Assignment Statements
College of Computer Science and Engineering
Expressions and Assignment Statements
Expression and Asignment Statements
Chapter 7 Expressions and Assignment Statements.
Chapter 7: Expressions and Assignment Statements Sangho Ha
B=15 b = a + fun(a); a=10 fun(a)=5.
PRESENTED BY ADNAN M. UZAIR NOMAN
Expressions and Assignment Statements
Expressions and Assignment Statements
Presentation transcript:

CS 363 Comparative Programming Languages Expressions and Assignment Statements

CS 363 Spring 2005 GMU2 Topics Arithmetic Expressions Overloaded Operators Type Conversions Relational and Boolean Expressions Short-Circuit Evaluation Assignment Statements Mixed-Mode Assignment

CS 363 Spring 2005 GMU3 Introduction Expressions are the fundamental means of specifying computations in a programming language To understand expression evaluation, need to be familiar with the orders of operator and operand evaluation Essence of imperative languages is dominant role of assignment statements

CS 363 Spring 2005 GMU4 Arithmetic Expressions Their evaluation was one of the motivations for the development of the first programming languages Arithmetic expressions consist of operators, operands, parentheses, and function calls

CS 363 Spring 2005 GMU5 Arithmetic Expressions Design issues for arithmetic expressions: 1. What are the operator precedence rules? 2. What are the operator associativity rules? 3. What is the order of operand evaluation? 4. Are there restrictions on operand evaluation side effects? 5. Does the language allow user-defined operator overloading? 6. What mode mixing is allowed in expressions?

CS 363 Spring 2005 GMU6 Arithmetic Expressions A unary operator has one operand A binary operator has two operands A ternary operator has three operands

CS 363 Spring 2005 GMU7 Arithmetic Expressions Def: The operator precedence rules for expression evaluation define the order in which “adjacent” operators of different precedence levels are evaluated (“adjacent” means they are separated by at most one operand) Typical precedence levels 1. parentheses 2. unary operators 3. ** (if the language supports it) 4. *, / 5. +, -

CS 363 Spring 2005 GMU8 Arithmetic Expressions Def: The operator associativity rules for expression evaluation define the order in which adjacent operators with the same precedence level are evaluated Typical associativity rules: –Left to right, except **, which is right to left –Sometimes unary operators associate right to left (e.g., FORTRAN)

CS 363 Spring 2005 GMU9 Arithmetic Expressions Precedence and associativity rules can be overridden with parentheses Operand evaluation order –The process: 1. Variables: just fetch the value 2. Constants: sometimes a fetch from memory; sometimes the constant is in the machine language instruction 3. Parenthesized expressions: evaluate all operands and operators first 4. Function references: The case of most interest Order of evaluation is crucial

CS 363 Spring 2005 GMU10 Functions in Expressions Pure functions have no side effects. Functional side effects  when a function changes a two- way parameter or a nonlocal variable Consider: –a = 10; b = a + fun(&a); –Variable a may or may not have changed. –Same problem with changes to global variables inside functions –Makes it difficult to reason about the result of individual statements.

CS 363 Spring 2005 GMU11 Eliminating Functional Side Effects One Solution to the Problem: * Write the language definition to disallow functional side effects –No two-way parameters in functions –No nonlocal references in functions –Advantage: it works! –Disadvantage: Programmers want the flexibility of two- way parameters (what about C?) and nonlocal references

CS 363 Spring 2005 GMU12 Arithmetic Expressions Conditional Expressions –C, C++, and Java (?:) average = (count == 0)? 0 : sum / count equilivant to if (count == 0) average = 0; else average = sum/count;

CS 363 Spring 2005 GMU13 Overloaded Operators Def: use of an operator for more than one purpose is called operator overloading Some are common (e.g., + for int and float) Some are potential trouble (e.g., * in C and C++) –Loss of compiler error detection (omission of an operand should be a detectable error) –Some loss of readability –Can be avoided by introduction of new symbols (e.g., Pascal’s div )

CS 363 Spring 2005 GMU14 Overloaded Operators C++ and Ada allow user-defined overloaded operators Must be possible for the compiler to choose the appropriate match using context (parameters and/or surrounding types) Potential problems: –Users can define nonsense operations –Readability may suffer, even when the operators make sense

CS 363 Spring 2005 GMU15 Type Conversions Def: A narrowing conversion is one that converts an object to a type that cannot include all of the values of the original type e.g., float to int Def: A widening conversion is one in which an object is converted to a type that can include at least approximations to all of the values of the original type e.g., int to float

CS 363 Spring 2005 GMU16 Type Conversions Def: A mixed-mode expression is one that has operands of different types Def: A coercion is an implicit type conversion The disadvantage of coercions: –They decrease in the type error detection ability of the compiler In most languages, all numeric types are coerced in expressions, using widening conversions In Ada, there are virtually no coercions in expressions

CS 363 Spring 2005 GMU17 Type Conversions Explicit Type Conversions (casts) e.g. Ada: FLOAT(INDEX)--INDEX is INTEGER type Java: (int)speed /*speed is float type*/

CS 363 Spring 2005 GMU18 Mixed-Mode Assignment Operator that permits operands of several types: –Ex: x + y where x is integer and y is real In FORTRAN, C, and C++, any numeric value can be assigned to any numeric scalar variable; whatever conversion is necessary is done

CS 363 Spring 2005 GMU19 Mixed-Mode Assignment In Pascal, integers can be assigned to reals, but reals cannot be assigned to integers (the programmer must specify whether the conversion from real to integer is truncated or rounded) In Java, only widening assignment coercions are done In Ada, there is no assignment coercion

CS 363 Spring 2005 GMU20 Relational and Boolean Expressions Relational Expressions: –Use relational operators and operands of various types –Evaluate to some Boolean representation –Operator symbols used vary somewhat among languages (!=, /=,.NE., <>, # )

CS 363 Spring 2005 GMU21 Relational and Boolean Expressions Boolean Expressions –Operands are Boolean and the result is Boolean Operators: FORTRAN 77 FORTRAN 90 C Ada.AND. and && and.OR. or || or.NOT. not ! not xor

CS 363 Spring 2005 GMU22 Relational and Boolean Expressions Precedence of operators specified by the language defn: Ada: **, abs, not *, /, mod, rem unary -, + binary +, -, & relops, in, not in and, or, xor, and then, or else C, C++, and Java have over 40 operators and at least 15 different levels of precedence

CS 363 Spring 2005 GMU23 Short Circuit Evaluation Two expressions joined by AND or OR Evaluation of the second expression depends on the result of the first while (index <= length) && (LIST[index] != value) … When first expression (index <= length) = False, can avoid evaluating the second part. Rules for ‘or’: if first expression is true, don’t evaluation the second expression

CS 363 Spring 2005 GMU24 Short Circuit Evaluation Must be done carefully and with programmer’s knowledge because of side effects. if (a < b) and (f(c) < d) If f(c) has functional side effects … Functions aren’t the only problem: (a > b) || (b++ / 3)

CS 363 Spring 2005 GMU25 Short Circuit Evaluation C, C++, and Java: use short-circuit evaluation for the usual Boolean operators ( && and || ), but also provide bitwise Boolean operators that are not short circuit ( & and | ) Ada: programmer can specify either (short-circuit is specified with and then and or else ) FORTRAN 77: short circuit, but any side-affected place must be set to undefined

CS 363 Spring 2005 GMU26 Assignment Statements The assignment operator symbol: 1. = FORTRAN, BASIC, PL/I, C, C++, Java 2. := ALGOLs, Pascal, Ada = Can be bad if it is overloaded for the relational operator for equality e.g. (PL/I) A = B = C

CS 363 Spring 2005 GMU27 Assignment Statements More complicated assignments: 1. Multiple targets (PL/I) A, B = Conditional targets (C, C++, and Java) (first==true)? total : subtotal = 0 3. Compound assignment operators (C, C++, and Java) sum += next;

CS 363 Spring 2005 GMU28 Assignment Statements More complicated assignments (continued): 4. Unary assignment operators (C, C++, and Java) a++; C, C++, and Java treat = as an arithmetic binary operator e.g. a = b * (c = d * 2 + 1) + 1 This is inherited from ALGOL 68

CS 363 Spring 2005 GMU29 Assignment Statements Assignment as an Expression –In C, C++, and Java, the assignment statement produces a result –So, they can be used as operands in expressions e.g. while ((ch = getchar())!=EOF){…} –Disadvantage Another kind of expression side effect