Operators and Expressions

Slides:



Advertisements
Similar presentations
Performing Simple Calculations with C# Svetlin Nakov Telerik Corporation
Advertisements

1 Chapter Two Using Data. 2 Objectives Learn about variable types and how to declare variables Learn how to display variable values Learn about the integral.
Data Types, Operators, Expressions, Statements, Console I/O, Loops, Arrays, Methods Svetlin Nakov Telerik Corporation
Other Types in OOP Enumerations, Structures, Generic Classes, Attributes Svetlin Nakov Technical Trainer Software University
 Dimitar Ivanov Introduction to programming with microcontrollers.
C# Advanced Topics Methods, Classes and Objects SoftUni Team Technical Trainers Software University
Methods Writing and using methods, overloads, ref, out SoftUni Team Technical Trainers Software University
Software University Curriculum, Courses, Exams, Jobs SoftUni Team Technical Trainers Software University
JavaScript Syntax Data Types, Variables, Operators, Expressions, Conditional Statements Svetlin Nakov Technical Trainer Software University.
Primitive Data Types and Variables Integer, Floating-Point, Text Data, Variables, Literals Angel Georgiev Part-time Trainer angeru.softuni-friends.org.
Fundamentals SoftUni Welcome to Software University SoftUni Team Technical Trainers Software University
Project Tracking Tools Trello, Asana, Basecamp, GitHub Issue Tracker, TRAC SoftUni Team Technical Trainers Software University
Software Testing Lifecycle Exit Criteria Evaluation, Continuous Integration Ivan Yonkov Technical Trainer Software University.
Teamwork and Personal Skills Course Introduction Software University SoftUni Team Technical Trainers.
Design Patterns: Structural Design Patterns
CH2 – Using Data. Constant Something which cannot be changed Data Type Format and size of a data item Intrinsic Data Types Pg. 47 – Table 2-1 Basic ones.
Conditional Statements Implementing Control-Flow Logic in C# SoftUni Team Technical Trainers Software University
Loops Repeating Code Multiple Times SoftUni Team Technical Trainers Software University
Chapter 2: Using Data.
STATEMENTS AND FLOW OF EXECUTION CHAPTER 11 OF APRESS A PROGRAMMERS GUIDE TO C SHARP 5.0.
Methods, Arrays, Lists, Dictionaries, Strings, Classes and Objects
Primitive Data Types and Variables Integer, Floating-Point, Text Data, Variables, Literals SoftUni Team Technical Trainers Software University
Svetlin Nakov Technical Trainer Software University
Build Processes and Continuous Integration Automating Build Processes Software University Technical Trainers SoftUni Team.
BUILDING JAVA PROGRAMS CHAPTER 2 PRIMITIVE DATA TYPES AND OPERATIONS.
Multidimensional Arrays, Sets, Dictionaries Processing Matrices, Multidimensional Arrays, Dictionaries, Sets SoftUni Team Technical Trainers Software University.
Project Tracking Tools Trello, Asana, Basecamp, GitHub Issue Tracker, TRAC Angel Georgiev Part-time Trainer Software University
Test-Driven Development Learn the "Test First" Approach to Coding SoftUni Team Technical Trainers Software University
Defining Classes Classes, Fields, Constructors, Methods, Properties SoftUni Team Technical Trainers Software University
Static Members and Namespaces Static Members, Indexers, Operators, Namespaces SoftUni Team Technical Trainers Software University
Perform Calculations and Control Flow Telerik Software Academy Learning & Development Team.
JavaScript Syntax Data Types, Variables, Operators, Expressions, Conditional Statements SoftUni Team Technical Trainers Software University
Arrays, Lists, Stacks, Queues Processing Sequences of Elements SoftUni Team Technical Trainers Software University
Java Syntax Data Types, Variables, Operators, Expressions, Statements, Console I/O, Conditional Statements SoftUni Team Technical Trainers Software University.
Very Basic Mathematical Concepts for Programmers
Asynchronous Web Services Writing Asynchronous Web Services SoftUni Team Technical Trainers Software University
C# Basics Course Introduction Svetlin Nakov Technical Trainer Software University
Jekyll Static Site Generator Template-Based Site Generation Svetlin Nakov Technical Trainer Software University
Performing Simple Calculations with C# Telerik Corporation
Exam Preparation Algorithms Course: Sample Exam SoftUni Team Technical Trainers Software University
Console Input / Output Reading and Writing to the Console SoftUni Team Technical Trainers Software University
CSM-Java Programming-I Spring,2005 Fundamental Data Types Lesson - 2.
High-Quality Code: Course Introduction Course Introduction SoftUni Team Technical Trainers Software University
Design Patterns: Structural Design Patterns General and reusable solutions to common problems in software design Software University
Advanced C# Course Introduction SoftUni Team Technical Trainers Software University
Reflection Programming under the hood SoftUni Team Technical Trainers Software University
Mocking with Moq Tools for Easier Unit Testing SoftUni Team Technical Trainers Software University
Mocking Unit Testing Methods with External Dependencies SoftUni Team Technical Trainers Software University
Mocking with Moq Mocking tools for easier unit testing Svetlin Nakov Technical Trainer Software University
PHP Exception Handling How to handle and create user-defined exceptions Mario Peshev Technical Trainer Software University
Test-Driven Development Learn the "Test First" Approach to Coding Svetlin Nakov Technical Trainer Software University
Data Types and Methods Data Types, Type Conversions, Switch-Case, Methods, Debugging SoftUni Team Technical Trainers Software University
Programming for Beginners Course Introduction SoftUni Team Technical Trainers Software University
Sets, Dictionaries SoftUni Team Technical Trainers Software University
Functional Programming Data Aggregation and Nested Queries Ivan Yonkov Technical Trainer Software University
Programming Fundamentals Course Introduction SoftUni Team Technical Trainers Software University
Doctrine The PHP ORM SoftUni Team Technical Trainers Software University
Creating Content Defining Topic, Creating Technical Training Materials SoftUni Team Technical Trainers Software University
First Steps in PHP Creating Very Simple PHP Scripts SoftUni Team Technical Trainers Software University
Inheritance Class Hierarchies SoftUni Team Technical Trainers Software University
Stacks and Queues Processing Sequences of Elements SoftUni Team Technical Trainers Software University
Generics SoftUni Team Technical Trainers Software University
High-Quality Programming Code Code Correctness, Readability, Maintainability, Testability, Etc. SoftUni Team Technical Trainers Software University
C# Basic Syntax, Visual Studio, Console Input / Output
Repeating Code Multiple Times
Array and List Algorithms
Numeral Types and Type Conversion
Expressions An expression is a portion of a C++ statement that performs an evaluation of some kind Generally requires that a computation or data manipulation.
Operators and Expressions
Operator King Saud University
Presentation transcript:

Operators and Expressions Performing Simple Calculations with C# Svetlin Nakov int bit = (n & (1 << p)) >> p; n = n & (~(1<<p)) | (bit<<p); Technical Trainer www.nakov.com Software University http://softuni.bg

Table of Contents Operators in C# and Operator Precedence * Table of Contents 07/16/96 Operators in C# and Operator Precedence Arithmetic Operators Logical Operators Bitwise Operators Comparison Operators Assignment Operators Other Operators Implicit and Explicit Type Conversions Expressions (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

* Arithmetic, Logical, Comparison, Assignment, Etc. 07/16/96 Operators in C# Arithmetic, Logical, Comparison, Assignment, Etc. (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

What is an Operator? Operator is an operation performed over data at runtime Takes one or more arguments (operands) Produces a new value Example of operators: Operators have precedence Precedence defines which will be evaluated first Expressions are sequences of operators and operands that are evaluated to a single value, e.g. (a + b) / 2 Operator "+" a = b + c; Operator "="

Operators in C# Operators in C# : Unary – take one operand Binary – take two operands Ternary (?:) – takes three operands Except for the assignment operators, all binary operators are left-associative The assignment operators and the conditional operator (?:) are right-associative

Categories of Operators in C# Category Operators Arithmetic + - * / % ++ -- Logical && || ^ ! Binary & | ^ ~ << >> Comparison == != < > <= >= Assignment = += -= *= /= %= &= |= ^= <<= >>= String concatenation + Type conversion is as typeof Other . [] () ?: new

Operators Precedence * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Operators Precedence Precedence Operators Highest () ++ -- (postfix) new typeof ++ -- (prefix) + - (unary) ! ~ * / % + - << >> < > <= >= is as == != & Lower ^

Operators Precedence (2) Higher | && || ?: Lowest = *= /= %= += -= <<= >>= &= ^= |= Parenthesis operator always has highest precedence Note: prefer using parentheses, even when it seems stupid to do so

Arithmetic Operators * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Arithmetic Operators Arithmetic operators +, -, * are the same as in math Division operator / if used on integers returns integer (without rounding) or exception Division operator / if used on real numbers returns real number or Infinity or NaN Remainder operator % returns the remainder from division of integers The special addition operator ++ increments a variable

Arithmetic Operators – Examples int squarePerimeter = 17; double squareSide = squarePerimeter / 4.0; double squareArea = squareSide * squareSide; Console.WriteLine(squareSide); // 4.25 Console.WriteLine(squareArea); // 18.0625 int a = 5; int b = 4; Console.WriteLine( a + b ); // 9 Console.WriteLine( a + b++ ); // 9 Console.WriteLine( a + b ); // 10 Console.WriteLine( a + (++b) ); // 11 Console.WriteLine( a + b ); // 11

Arithmetic Operators – Example (2) Console.WriteLine(12 / 3); // 4 Console.WriteLine(11 / 3); // 3 Console.WriteLine(11.0 / 3); // 3.666666667 Console.WriteLine(11 / 3.0); // 3.666666667 Console.WriteLine(11 % 3); // 2 Console.WriteLine(11 % -3); // 2 Console.WriteLine(-11 % 3); // -2 Console.WriteLine(1.5 / 0.0); // Infinity Console.WriteLine(-1.5 / 0.0); // -Infinity Console.WriteLine(0.0 / 0.0); // NaN int x = 0; Console.WriteLine(5 / x); // DivideByZeroException

Arithmetic Operators – Overflow Examples int bigNum = 2000000000; int bigSum = 2 * bigNum; // Integer overflow! Console.WriteLine(bigSum); // -294967296 bigNum = Int32.MaxValue; bigNum = bigNum + 1; Console.WriteLine(bigNum); // -2147483648 checked { // This will cause OverflowException bigSum = bigNum * 2; }

Arithmetic Operators Live Demo * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

* 07/16/96 Logical Operators (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Logical Operators Logical operators take boolean operands and return boolean result Operator ! turns true to false and false to true Behavior of the operators &&, || and ^ (1 == true, 0 == false): Operator || && ^ Operand1 1 Operand2 Result

Logical Operators – Example bool a = true; bool b = false; Console.WriteLine(a && b); // False Console.WriteLine(a || b); // True Console.WriteLine(a ^ b); // True Console.WriteLine(!b); // True Console.WriteLine(b || true); // True Console.WriteLine(b && true); // False Console.WriteLine(a || true); // True Console.WriteLine(a && true); // True Console.WriteLine(!a); // False Console.WriteLine((5>7) ^ (a==b)); // False

Logical Operators Live Demo * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

* 07/16/96 Bitwise Operators (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Bitwise Operators Bitwise operator ~ turns all 0 to 1 and all 1 to 0 Like ! for boolean expressions but bit by bit The operators |, & and ^ behave like ||, && and ^ for boolean expressions but bit by bit The << and >> move the bits (left or right) Behavior of the operators|, & and ^: Operator | & ^ Operand1 1 Operand2 Result

Bitwise Operators (2) Bitwise operators are used on integer numbers (byte, sbyte, int, uint, long, ulong) Bitwise operators are applied bit by bit Examples: ushort a = 3; // 00000000 00000011 ushort b = 5; // 00000000 00000101 Console.WriteLine( a | b); // 00000000 00000111 Console.WriteLine( a & b); // 00000000 00000001 Console.WriteLine( a ^ b); // 00000000 00000110 Console.WriteLine(~a & b); // 00000000 00000100 Console.WriteLine( a << 1); // 00000000 00000110 Console.WriteLine( a >> 1); // 00000000 00000001

Bitwise Operators – Tips & Tricks How to get the bit at position p from a number n? How to set the bit at position p to 0? int p = 5; int n = 291; // 00000001 00100011 int nRightP = n >> p; // 00000000 00001001 int bit = nRightP & 1; // 00000000 00000001 Console.WriteLine(bit); // 1 int p = 5; int n = 291; // 00000001 00100011 int mask = ~(1 << p); // 11111111 11011111 int result = n & mask; // 00000001 00000011 Console.WriteLine(result); // 259

Bitwise Operators – Tips & Tricks (2) How to set the bit at position p to 1? How to print a binary number to the console? int p = 4; int n = 291; // 00000001 00100011 int mask = 1 << p; // 00000000 00010000 int result = n | mask; // 00000001 00110011 Console.WriteLine(result); // 307 Console.WriteLine( Convert.ToString(result, 2).PadLeft(16, '0')); // 0000000000110011

Bitwise Operators Live Demo * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Comparison and Assignment Operators * 07/16/96 Comparison and Assignment Operators (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Comparison Operators Comparison operators are used to compare variables ==, <, >, >=, <=, != Comparison operators example: int a = 5; int b = 4; Console.WriteLine(a >= b); // True Console.WriteLine(a != b); // True Console.WriteLine(a == b); // False Console.WriteLine(a == a); // True Console.WriteLine(a != ++b); // False Console.WriteLine(a > b); // False

Assignment Operators Assignment operators are used to assign a value to a variable , =, +=, -=, |=, ... Assignment operators example: int x = 6; int y = 4; Console.WriteLine(y *= 2); // 8 int z = y = 3; // y=3 and z=3 Console.WriteLine(z); // 3 Console.WriteLine(x |= 1); // 7 Console.WriteLine(x += 3); // 10 Console.WriteLine(x /= 2); // 5

Comparison and Assignment Operators * 07/16/96 Comparison and Assignment Operators Live Demo (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

* 07/16/96 Other Operators (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Other Operators String concatenation operator + is used to concatenate strings If the second operand is not a string, it is converted to string automatically string first = "First"; string second = "Second"; Console.WriteLine(first + second); // FirstSecond string output = "The number is : "; int number = 5; Console.WriteLine(output + number); // The number is : 5

Other Operators (2) Member access operator . is used to access object members E.g. DateTime.Now.DayOfWeek.ToString() Square brackets [] are used with arrays, indexers and attributes E.g. numbers[3], "Hello"[2] Parentheses ( ) are used to override the default operator precedence, e.g. (a + b) / 2 Class cast operator (type) is used to cast one compatible type to another, e.g. (uint) -1

Other Operators (3) Conditional operator ?: has the form (if b is true then the result is x else the result is y) The new operator is used to create new objects The typeof operator returns System.Type object (the reflection of a type), e.g. typeof(int) The is operator checks if an object is compatible with given type, e.g. 5 is int  true; 3.14 is float  false b ? x : y

Other Operators (4) Null-coalescing operator ?? is used to define a default value for both nullable value types and reference types It returns the left-hand operand if it is not null Otherwise it returns the right-hand operand Here the value of y is -1 int? x = null; int y = x ?? -1; int? x = 1; int y = x ?? -1; Here the value of y is 1

Other Operators – Example int a = 6; int b = 4; Console.WriteLine(a > b ? "a>b" : "b>=a"); // a>b Console.WriteLine((long) a); // 6 int c = b = 3; // b=3; followed by c=3; Console.WriteLine(c); // 3 Console.WriteLine(a is int); // True Console.WriteLine((a+b)/2); // 4 Console.WriteLine(typeof(int)); // System.Int32 int d = new int(); Console.WriteLine(d); // 0

Other Operators Live Demo * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Implicit and Explicit Type Conversions * 07/16/96 Implicit and Explicit Type Conversions (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Implicit Type Conversion Automatic conversion of value of one data type to value of another data type Allowed when no loss of data is possible "Larger" types can implicitly take values of smaller "types" Example: int i = 5; long l = i; // implicit type conversion

Explicit Type Conversion Manual conversion of a value of one data type to a value of another data type Allowed only explicitly by (type) operator Required when there is a possibility of loss of data or precision Example: long l = 5; int i = (int) l; // explicit type conversion

Type Conversions – Example Example of implicit and explicit conversions: Note: explicit conversion may be applied even when it is not required by the compiler float heightInMeters = 1.74f; // Explicit conversion double maxHeight = heightInMeters; // Implicit double minHeight = (double) heightInMeters; // Explicit float actualHeight = (float) maxHeight; // Explicit float maxHeightFloat = maxHeight; // Compilation error!

Type Conversions Live Demo * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

* 07/16/96 Expressions (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Expressions Expressions are sequences of operators, literals and variables that are evaluated to some value Examples: int r = (150-20) / 2 + 5; // r=70 // Expression for calculating a circle area double surface = Math.PI * r * r; // Expression for calculating a circle perimeter double perimeter = 2 * Math.PI * r;

Expressions (2) Expressions have: Examples: Type (integer, real, boolean, ...) Value Examples: Expression of type int. Calculated at compile time Expression of type int. Calculated at runtime int a = 2 + 3; // a = 5 int b = (a+3) * (a-4) + (2*a + 7) / 4; // b = 12 bool greater = (a > b) || ((a == 0) && (b == 0)); Expression of type bool. Calculated at runtime

Expressions Live Demo * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

Summary We discussed the operators in C#: Arithmetic, logical, bitwise, comparison, assignment and others Operator precedence Bitwise calculations (read / change a bit) We learned when to use implicit and explicit type conversions We learned how to use expressions © Software University Foundation – http://softuni.org This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike license.

Operators and Expressions http://softuni.bg/courses/csharp-basics

Resources Boolean algebra (logic) Bitwise mask Bitwise operation http://en.wikipedia.org/wiki/Boolean_algebra_%28logic%29 Bitwise mask http://en.wikipedia.org/wiki/Mask_%28computing%29 Bitwise operation http://en.wikipedia.org/wiki/Bitwise_operation Bit hacks graphics.stanford.edu/~seander/bithacks.html

License This course (slides, examples, demos, videos, homework, etc.) is licensed under the "Creative Commons Attribution- NonCommercial-ShareAlike 4.0 International" license Attribution: this work may contain portions from "Fundamentals of Computer Programming with C#" book by Svetlin Nakov & Co. under CC-BY-SA license "C# Part I" course by Telerik Academy under CC-BY-NC-SA license © Software University Foundation – http://softuni.org This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike license.

SoftUni Diamond Partners

Free Trainings @ Software University Software University Foundation – softuni.org Software University – High-Quality Education, Profession and Job for Software Developers softuni.bg Software University @ Facebook facebook.com/SoftwareUniversity Software University @ YouTube youtube.com/SoftwareUniversity Software University Forums – forum.softuni.bg © Software University Foundation – http://softuni.org This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike license.