Generic Collection Class: Motivation (2) Use of Generic Parameters Iterator and Singleton Patterns

Size: px
Start display at page:

Download "Generic Collection Class: Motivation (2) Use of Generic Parameters Iterator and Singleton Patterns"

Transcription

1 Generic Collection Class: Motivation (2) Use of Generic Parameters Iterator and Singleton Patterns EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG ACCOUNT _STACK {NONE -- Implementation imp: ARRAY[ ACCOUNT ] ; i: INTEGER -- Queries count: INTEGER Result := i -- Number of items on stack. top: ACCOUNT Result := imp [i] -- Return top of stack. -- Commands push (v: ACCOUNT ) imp[i] := v; i := i Add v to top of stack. pop i := i Remove top of stack. Does how we implement integer stack operations (e.g., top, push, pop) deps on s specific to element type ACCOUNT (e.g., deposit, withdraw)? [ NO! ] A collection (e.g., table, tree, graph) is meant for the storage and retrieval of elements, not how those elements are manipulated. 3 of 42 Generic Collection Class: Motivation (1) STRING _STACK {NONE -- Implementation imp: ARRAY[ STRING ] ; i: INTEGER -- Queries count: INTEGER Result := i -- Number of items on stack. top: STRING Result := imp [i] -- Return top of stack. -- Commands push (v: STRING ) imp[i] := v; i := i Add v to top of stack. pop i := i Remove top of stack. Does how we implement integer stack operations (e.g., top, push, pop) deps on s specific to element type STRING (e.g., at, app)? [ NO! ] How would you implement another ACCOUNT STACK? 2 of 42 Generic Collection Class: Supplier Your design smells if you have to create an almost identical new (hence code duplicates ) for every stack element type you need (e.g., INTEGER, CHARACTER, PERSON, etc.). Instead, as supplier, use G to parameterize element type: STACK [G] {NONE -- Implementation imp: ARRAY[ G ] ; i: INTEGER -- Queries count: INTEGER Result := i -- Number of items on stack. top: G Result := imp [i] -- Return top of stack. -- Commands push (v: G ) imp[i] := v; i := i Add v to top of stack. pop i := i Remove top of stack. 4 of 42

2 Generic Collection Class: Client (1.1) As client, declaring ss: STACK[ STRING ] instantiates every occurrence of G as STRING. STACK [G STRING] {NONE -- Implementation imp: ARRAY[ G STRING ] ; i: INTEGER -- Queries count: INTEGER Result := i -- Number of items on stack. top: G STRING Result := imp [i] -- Return top of stack. -- Commands push (v: G STRING ) imp[i] := v; i := i Add v to top of stack. pop i := i Remove top of stack. 5 of 42 Generic Collection Class: Client (2) As client, instantiate the type of G to be the one needed. 1 test_stacks: BOOLEAN 2 local 3 ss: STACK[STRING] ; sa: STACK[ACCOUNT] 4 s: STRING ; a: ACCOUNT 5 6 ss.push("a") 7 ss.push(create {ACCOUNT.make ("Mark", 200)) 8 s := ss.top 9 a := ss.top 10 sa.push(create {ACCOUNT.make ("Alan", 100)) 11 sa.push("b") 12 a := sa.top 13 s := sa.top 14 L3 commits that ss stores STRING objects only. L8 and L10 valid; L9 and L11 invalid. L4 commits that sa stores ACCOUNT objects only. L12 and L14 valid; L13 and L15 invalid. 7 of 42 Generic Collection Class: Client (1.2) As client, declaring ss: STACK[ ACCOUNT ] instantiates every occurrence of G as ACCOUNT. STACK [G ACCOUNT] {NONE -- Implementation imp: ARRAY[ G ACCOUNT ] ; i: INTEGER -- Queries count: INTEGER Result := i -- Number of items on stack. top: G ACCOUNT Result := imp [i] -- Return top of stack. -- Commands push (v: G ACCOUNT ) imp[i] := v; i := i Add v to top of stack. pop i := i Remove top of stack. What are design patterns? Solutions to recurring problems that arise when software is being developed within a particular context. Heuristics for structuring your code so that it can be systematically maintained and exted. Caveat : A pattern is only suitable for a particular problem. Therefore, always understand problems before solutions! 6 of 42 8 of 42

3 Motivation (1) Client: Architecture Supplier: CART orders: ARRAY[ORDER] ORDER price: INTEGER quantity: INTEGER Problems? SHOP cart: CART checkout: INTEGER from i := cart.orders.lower until i > cart.orders.upper Result := Result + cart.orders[i].price * cart.orders[i].quantity i := i + 1 CLIENT CLIENT_APPLICATION+ container: ITERABLE+ -- Fresh cursor of the container. increase_balance(v: INTEGER; name: STRING) -- Increase the balance for account with owner name.? across container as cur all cur.item.balance v! across old container.deep_twin as cur all (cur.item.owner ~ name implies cur.item.balance = old cur.item.balance + v) and (cur.item.owner ~ name implies cur.item.balance = old cur.item.balance) some_account_negative: BOOLEAN -- Is there some account negative?! Result = across container as cur some cur.item.balance < v container+ SUPPLIER ITERABLE * ITERATION_CURSOR[G] * new_cursor*: ITERATION_CURSOR[G] after*: BOOLEAN -- Fresh cursor associated with current structure. -- Are there no more items to iterate over?! Result Void new_cursor* item*: G -- Item at current cursor position.? valid_position: not after forth* -- Move to next position.? valid_position: not after INDEXABLE_ITERATION_CURSOR[G] + ARRAY[G] + after+: BOOLEAN -- Are there no more items to iterate over? new_cursor+ item+: G -- Item at current cursor position. forth+ LINKED_LIST[G] + ARRAYED_LIST[G] + -- Move to next position. start+ -- Move to first position. ITERABLE_COLLECTION 9 of of 42 Motivation (2) Supplier: CART orders: LINKED LIST[ORDER] ORDER price: INTEGER quantity: INTEGER Client s code must be modified to adapt to the supplier s change on implementation. 10 of 42 Client: SHOP cart: CART checkout: INTEGER from cart.orders.start until cart.orders.after Result := Result + cart.orders.item.price * cart.orders.item.quantity Supplier s Side Information Hiding Principle : Hide design decisions that are likely to change (i.e., stable API). Change of secrets es not affect clients using the existing API. e.g., changing from ARRAY to LINKED LIST in the CART Steps: 1. Let the supplier inherit from the deferred ITERABLE[G]. 2. This forces the supplier to implement the inherited : new cursor: ITERATION CURSOR [G], where the type parameter G may be instantiated (e.g., ITERATION CURSOR[ORDER]). 2.1 If the internal, library data structure is already iterable e.g., imp: ARRAY[ORDER], then simply return imp.new cursor. 2.2 Otherwise, say imp: MY TREE[ORDER], then create a new MY TREE ITERATION CURSOR that inherits from ITERATION CURSOR[ORDER], then implement the 3 inherited s after, item, and forth accordingly. 12 of 42

4 Supplier s Implementation (1) CART inherit ITERABLE[ORDER] {NONE -- Information Hiding orders: ARRAY[ORDER] -- Iteration new_cursor: ITERATION_CURSOR[ORDER] Result := orders.new_cursor When the secrete implementation is already iterable, reuse it! 13 of 42 Supplier s Imp. (2.2) MY_ITERATION_CURSOR[G] inherit ITERATION_CURSOR[ TUPLE[STRING, G] ] -- Constructor make (ns: ARRAY[STRING]; rs: ARRAY[G]) {NONE -- Information Hiding cursor_position: INTEGER names: ARRAY[STRING] records: ARRAY[G] -- Cursor Operations item: TUPLE[STRING, G] after: Boolean forth You need to implement the three inherited s: item, after, and forth. 15 of 42 Supplier s Imp. (2.1) Supplier s Imp. (2.3) GENERIC_BOOK[G] inherit ITERABLE[ TUPLE[STRING, G] ] {NONE -- Information Hiding names: ARRAY[STRING] records: ARRAY[G] -- Iteration new_cursor: ITERATION_CURSOR[ TUPLE[STRING, G] ] local cursor: MY ITERATION CURSOR[G] create cursor.make (names, records) Result := cursor Visualizing iterator pattern at runtime: ArrayedMap inherit ITERABLE[TUPLE[STRING, G]] names records new_cursor ITERATION_CURSOR[TUPLE[STRING, G]] values_1 values_2 cursor_position item after, forth names.upper records.upper No Eiffel library support for iterable arrays Implement it yourself! 14 of of 42

5 Exercises Client s Side 1. Draw the BON diagram showing how the iterator pattern is applied to the CART (supplier) and SHOP (client) es. 2. Draw the BON diagram showing how the iterator pattern is applied to the supplier es: GENERIC BOOK (a descant of ITERABLE) and MY ITERATION CURSOR (a descant of ITERATION CURSOR). Information hiding : the clients not at all dep on how the supplier implements the collection of data; they are only interested in iterating through the collection in a linear manner. Steps: 1. Obey the code to interface, not to implementation principle. 2. Let the client declare an attribute of interface type ITERABLE[G] (rather than implementation type ARRAY, LINKED LIST, or MY TREE). e.g., cart: CART, where CART inherits ITERATBLE[ORDER] 3. Eiffel supports, in both implementation and contracts, the across syntax for iterating through anything that s iterable. 17 of of 42 Resources Tutorial Videos on Generic Parameters and the Iterator Pattern Tutorial Videos on Information Hiding and the Iterator Pattern 18 of 42 Clients using across for Contracts (1) CHECKER -- Attributes collection: ITERABLE [INTEGER] -- Queries is all positive: BOOLEAN -- Are all items in collection positive? ensure across collection as cursor all cursor.item > 0 Using all corresponds to a universal quantification (i.e., ). Using some corresponds to an existential quantification (i.e., ). 20 of 42

6 Clients using across for Contracts (2) BANK accounts: LIST [ACCOUNT] binary_search (acc_id: INTEGER): ACCOUNT -- Search on accounts sorted in non-descing order. require across 1.. (accounts.count - 1) as cursor all accounts [cursor.item].id <= accounts [cursor.item + 1].id ensure Result.id = acc_id This precondition corresponds to: i INTEGER 1 i < accounts.count accounts[i].id accounts[i + 1].id 21 of 42 Clients using Iterable in Imp. (1) BANK accounts: ITERABLE [ACCOUNT] max_balance: ACCOUNT -- Account with the maximum balance value. require?? local cursor: ITERATION_CURSOR[ACCOUNT]; max: ACCOUNT from max := accounts [1]; cursor := accounts. new cursor until cursor. after if cursor. item.balance > max.balance then max := cursor. item cursor. forth ensure?? 23 of 42 Clients using across for Contracts (3) BANK accounts: LIST [ACCOUNT] contains_duplicate: BOOLEAN -- Does the account list contain duplicate? ensure i, j INTEGER 1 i accounts.count 1 j accounts.count accounts[i] accounts[j] i = j Exercise: Convert this mathematical predicate for postcondition into Eiffel. Hint: Each across construct can only introduce one dummy variable, but you may nest as many across constructs as necessary. 22 of 42 Clients using Iterable in Imp. (2) 1 SHOP 2 cart: CART 3 checkout: INTEGER 4 -- Total price calculated based on orders in the cart. 5 require?? 6 local 7 order: ORDER 8 9 across 10 cart as cursor 11 loop 12 order := cursor. item 13 Result := Result + order.price * order.quantity ensure?? 16 Class CART should inherit from ITERABLE[ORDER]. L10 implicitly declares cursor: ITERATION CURSOR[ORDER] and es cursor := cart.new cursor 24 of 42

7 Clients using Iterable in Imp. (3) BANK accounts: ITERABLE [ACCOUNT] max_balance: ACCOUNT -- Account with the maximum balance value. require?? local max: ACCOUNT max := accounts [1] across accounts as cursor loop if cursor.item.balance > max.balance then max := cursor. item ensure?? 25 of 42 Shared Data via Inheritance Client: DEPOSIT inherit SHARED DATA -- maximum_balance relevant WITHDRAW inherit SHARED DATA -- minimum_balance relevant INT_TRANSFER inherit SHARED DATA -- exchange_rate relevant ACCOUNT inherit SHARED DATA -- interest_rate relevant deposits: DEPOSIT_LIST withdraws: WITHDRAW_LIST 27 of 42 Supplier: SHARED DATA interest_rate: REAL exchange_rate: REAL minimum_balance: INTEGER maximum_balance: INTEGER Problems? Singleton Pattern: Motivation Sharing Data via Inheritance: Architecture Consider two problems: 1. Bank accounts share a set of data. e.g., interest and exchange rates, minimum and maximum balance, etc. 2. Processes are regulated to access some shared, limited resources. e.g., printers 26 of 42 Irreverent s are inherited. Descants cohesion is broken. Same set of data is duplicated as instances are created. Updates on these data may result in inconsistency. 28 of 42

8 Sharing Data via Inheritance: Limitation Each descant instance at runtime owns a separate copy of the shared data. This makes inheritance not an appropriate solution for both problems: What if the interest rate changes? Apply the change to all instantiated account objects? An update to the global lock must be observable by all regulated processes. Solution: Separate notions of data and its shared access in two separate es. Encapsulate the shared access itself in a separate. Introducing the Once Routine in Eiffel (1.2) 1 test_query: BOOLEAN 2 local 3 a: A 4 arr1, arr2: ARRAY[STRING] 5 6 create a.make 7 8 arr1 := a.new_array ("Alan") 9 Result := arr1.count = 1 and arr1[1] "Alan" 10 check Result arr2 := a.new_array ("Mark") 13 Result := arr2.count = 1 and arr2[1] "Mark" 14 check Result Result := not (arr1 = arr2) 17 check Result of of 42 Introducing the Once Routine in Eiffel (1.1) 1 A 2 create make 3 -- Constructor 4 make 5 -- Query 6 new_once_array (s: STRING): ARRAY[STRING] 7 -- A once query that returns an array. 8 once 9 create {ARRAY[STRING] Result.make_empty 10 Result.force (s, Result.count + 1) new_array (s: STRING): ARRAY[STRING] An ordinary query that returns an array create {ARRAY[STRING] Result.make_empty 16 Result.force (s, Result.count + 1) L9 & L10 executed only once for initialization. L15 & L16 executed whenever the is called. 30 of 42 Introducing the Once Routine in Eiffel (1.3) 1 test_once_query: BOOLEAN 2 local 3 a: A 4 arr1, arr2: ARRAY[STRING] 5 6 create a.make 7 8 arr1 := a.new_once_array ("Alan") 9 Result := arr1.count = 1 and arr1[1] "Alan" 10 check Result arr2 := a.new_once_array ("Mark") 13 Result := arr2.count = 1 and arr2[1] "Alan" 14 check Result Result := arr1 = arr2 17 check Result of 42

9 Introducing the Once Routine in Eiffel (2) r (): T once -- Some computations on Result The ordinary is replaced by once. The first time the once routine r is called by some client, it executes the body of computations and returns the computed result. From then on, the computed result is cached. In every subsequent call to r, possibly by different clients, the body of r is not executed at all; instead, it just returns the cached result, which was computed in the very first call. How es this help us? Cache the reference to the same shared object! 33 of 42 Singleton Pattern in Eiffel (1) Supplier: DATA create {DATA ACCESS make {DATA ACCESS make v := Data Attributes v: INTEGER change_v (nv: INTEGER) v := nv expanded DATA ACCESS data: DATA -- The one and only access once create Result.make invariant data = data 35 of 42 Client: test: BOOLEAN local access: DATA ACCESS d1, d2: DATA d1 := access.data d2 := access.data Result := d1 = d2 and d1.v = 10 and d2.v = 10 check Result d1.change_v (15) Result := d1 = d2 and d1.v = 15 and d2.v = 15 Writing create d1.make in test es not compile. Why? Approximating Once Routine in Java We may encode Eiffel once routines in Java: BankData { BankData() { uble interestrate; void setir(uble r); BankDataAccess { static boolean initonce; static BankData data; static BankData getdata() { if(!initonce) { data = new BankData(); initonce = true; return data; 34 of 42 Account { BankData data; Account() { data = BankDataAccess.getData(); Problem? Multiple BankData objects may be created in Account, breaking the singleton! Account() { data = new BankData(); Singleton Pattern in Eiffel (2) Supplier: BANK DATA create {BANK DATA ACCESS make {BANK DATA ACCESS make -- Data Attributes interest_rate: REAL set_interest_rate (r: REAL) expanded BANK DATA ACCESS data: BANK DATA -- The one and only access once create Result.make invariant data = data 36 of 42 Client: ACCOUNT data: BANK DATA make () -- Init. access to bank data. local data_access: BANK DATA ACCESS data := data_access.data Writing create data.make in client s make es not compile. Why?

10 Testing Singleton Pattern in Eiffel test_bank_shared_data: BOOLEAN -- Test that a single data object is manipulated local acc1, acc2: ACCOUNT comment("t1: test that a single data object is shared") create acc1.make ("Bill") create acc2.make ("Steve") Result := acc1.data = acc2.data check Result Result := acc1.data acc2.data check Result acc1.data.set_interest_rate (3.11) Result := acc1.data.interest_rate = acc2.data.interest_rate and acc1.data.interest_rate = 3.11 check Result acc2.data.set_interest_rate (2.98) Result := acc1.data.interest_rate = acc2.data.interest_rate and acc1.data.interest_rate = of 42 Index (1) Generic Collection Class: Motivation (1) Generic Collection Class: Motivation (2) Generic Collection Class: Supplier Generic Collection Class: Client (1.1) Generic Collection Class: Client (1.2) Generic Collection Class: Client (2) What are design patterns? Motivation (1) Motivation (2) Architecture Supplier s Side Supplier s Implementation (1) Supplier s Imp. (2.1) Supplier s Imp. (2.2) 39 of 42 Singleton Pattern: Architecture CLIENT_1 APPLICATION_1 + CLIENT_2 APPLICATION_2 + CLIENT_3 APPLICATION_3 + DATA_ACCESS + data: DATA -- A shared data object. once create Result.make Invariant shared_instance: data = data SUPPLIER_OF_SHARED_DATA data + DATA + v: VALUE -- An example query. c -- An example command. DATA_ACCESS make - - Initialize a data object. Important Exercises: Instantiate this architecture to both problems of shared bank data and shared lock. Draw them in draw.io. 38 of 42 Index (2) Supplier s Imp. (2.3) Exercises Resources Client s Side Clients using across for Contracts (1) Clients using across for Contracts (2) Clients using across for Contracts (3) Clients using Iterable in Imp. (1) Clients using Iterable in Imp. (2) 40 of 42

11 Index (3) Clients using Iterable in Imp. (3) Singleton Pattern: Motivation Shared Data via Inheritance Sharing Data via Inheritance: Architecture Sharing Data via Inheritance: Limitation Introducing the Once Routine in Eiffel (1.1) Introducing the Once Routine in Eiffel (1.2) Introducing the Once Routine in Eiffel (1.3) Introducing the Once Routine in Eiffel (2) Approximating Once Routines in Java Singleton Pattern in Eiffel (1) Singleton Pattern in Eiffel (2) Testing Singleton Pattern in Eiffel 41 of 42 Index (4) Singleton Pattern: Architecture 42 of 42

Use of Generic Parameters Iterator and Singleton Patterns

Use of Generic Parameters Iterator and Singleton Patterns Use of Generic Parameters Iterator and Singleton Patterns EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG Generic Collection Class: Motivation (1) class STRING _STACK feature {NONE} -- Implementation

More information

Singleton Pattern: Motivation. Design Patterns: Singleton and Iterator. What are design patterns? Shared Data through Inheritance

Singleton Pattern: Motivation. Design Patterns: Singleton and Iterator. What are design patterns? Shared Data through Inheritance Singleton Pattern: Motivation Design Patterns: Singleton and Iterator EECS3311: Software Design Fall 2017 CHEN-WEI WANG Consider two problems: 1. Bank accounts share a set of data. e.g., interest and exchange

More information

Commands, and Queries, and Features. Syntax of Eiffel: a Brief Overview. Escape Sequences. Naming Conventions

Commands, and Queries, and Features. Syntax of Eiffel: a Brief Overview. Escape Sequences. Naming Conventions Commands, and Queries, and Features Syntax of Eiffel: a Brief Overview EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG In a Java class: Attributes: Data Mutators: Methods that change attributes without

More information

Syntax of Eiffel: a Brief Overview

Syntax of Eiffel: a Brief Overview Syntax of Eiffel: a Brief Overview EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG Escape Sequences Escape sequences are special characters to be placed in your program text. In Java, an escape sequence

More information

Abstract Data Types (ADTs), Classes, and Objects

Abstract Data Types (ADTs), Classes, and Objects Abstract Data Types (ADTs), Classes, and Objects Readings: OOSC2 Chapters 6, 7, 8 EECS3311: Software Design Fall 2017 CHEN-WEI WANG Abstract Data Type (ADT) abstract implementation details are not specified!

More information

Test-Driven Development (TDD)

Test-Driven Development (TDD) Test-Driven Development (TDD) EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG DbC: Supplier DbC is supported natively in Eiffel for supplier: class ACCOUNT create make feature -- Attributes owner :

More information

Abstractions via Mathematical Models

Abstractions via Mathematical Models Abstractions via Mathematical Models EECS3311: Software Design Fall 2017 CHEN-WEI WANG Motivating Problem: Complete Contracts Recall what we learned in the Complete Contracts lecture: In post-condition,

More information

Motivating Problem: LIFO Stack (1) Abstractions via Mathematical Models. Motivating Problem: LIFO Stack (2.1) Motivating Problem: Complete Contracts

Motivating Problem: LIFO Stack (1) Abstractions via Mathematical Models. Motivating Problem: LIFO Stack (2.1) Motivating Problem: Complete Contracts Motivating Problem: LIFO Stack (1) Abstractions via Mathematical Models EECS3311: Software Design Fall 2017 CHEN-WEI WANG Let s consider three different implementation strategies: Stack Feature count Array

More information

Motivating Problem: LIFO Stack (1) Abstractions via Mathematical Models. Motivating Problem: LIFO Stack (2.1) Motivating Problem: Complete Contracts

Motivating Problem: LIFO Stack (1) Abstractions via Mathematical Models. Motivating Problem: LIFO Stack (2.1) Motivating Problem: Complete Contracts Motivating Problem: LIFO Stack (1) Abstractions via Mathematical Models EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG Let s consider three different implementation strategies: Stack Feature count

More information

Assertions. Assertions - Example

Assertions. Assertions - Example References: internet notes; Bertrand Meyer, Object-Oriented Software Construction; 11/13/2003 1 Assertions Statements about input to a routine or state of a class Have two primary roles As documentation,

More information

References: internet notes; Bertrand Meyer, Object-Oriented Software Construction; 10/14/2004 1

References: internet notes; Bertrand Meyer, Object-Oriented Software Construction; 10/14/2004 1 References: internet notes; Bertrand Meyer, Object-Oriented Software Construction; 10/14/2004 1 Assertions Statements about input to a routine or state of a class Have two primary roles As documentation,

More information

What This Course Is About Design-by-Contract (DbC)

What This Course Is About Design-by-Contract (DbC) What This Course Is About Design-by-Contract (DbC) Readings: OOSC2 Chapter 11 EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG Focus is design Architecture: (many) inter-related modules Specification:

More information

Generics in Java. EECS2030: Advanced Object Oriented Programming Fall 2017 CHEN-WEI WANG

Generics in Java. EECS2030: Advanced Object Oriented Programming Fall 2017 CHEN-WEI WANG Generics in Java EECS2030: Advanced Object Oriented Programming Fall 2017 CHEN-WEI WANG Motivating Example: A Book of Objects 1 class Book { 2 String[] names; 3 Object[] records; 4 /* add a name-record

More information

Motivating Example: Observations (1) Generics in Java. Motivating Example: A Book of Objects. Motivating Example: Observations (2)

Motivating Example: Observations (1) Generics in Java. Motivating Example: A Book of Objects. Motivating Example: Observations (2) Motivating Example: Observations (1) Generics in Java EECS2030: Advanced Object Oriented Programming Fall 2017 CHEN-WEI WANG In the Book class: By declaring the attribute Object[] records We meant that

More information

Introduction to Eiffel

Introduction to Eiffel Introduction to Eiffel Martin Nordio, Christian Estler ETH Zurich Distributed Software Engineering Lab 1 Overview Part 1: Language Constructs Ø Basics: definition, if then else, expressions, loops and

More information

Introduction to Programming Using Java (98-388)

Introduction to Programming Using Java (98-388) Introduction to Programming Using Java (98-388) Understand Java fundamentals Describe the use of main in a Java application Signature of main, why it is static; how to consume an instance of your own class;

More information

Design-by-Contract (Dbc) Test-Driven Development (TDD)

Design-by-Contract (Dbc) Test-Driven Development (TDD) Design-by-Contract (Dbc) Test-Driven Development (TDD) Readings: OOSC2 Chapter 11 EECS3311: Software Design Fall 2017 CHEN-WEI WANG Terminology: Contract, Client, Supplier A supplier implements/provides

More information

Singleton Pattern Creational. » Ensure a class has only one instance» Provide a global point of access

Singleton Pattern Creational. » Ensure a class has only one instance» Provide a global point of access Singleton Pattern Creational Intent» Ensure a class has only one instance» Provide a global point of access Motivation Some classes must only have one instance file system, window manager Applicability»

More information

Client, Supplier, Contract in OOP (1) Design-by-Contract (Dbc) Test-Driven Development (TDD) Terminology: Contract, Client, Supplier

Client, Supplier, Contract in OOP (1) Design-by-Contract (Dbc) Test-Driven Development (TDD) Terminology: Contract, Client, Supplier Design-by-Contract (Dbc) Test-Driven Development (TDD) Readings: OOSC2 Chapter 11 EECS3311: Software Design Fall 2017 CHEN-WEI WANG Client, Supplier, Contract in OOP (1) class Microwave { private boolean

More information

Catching Defects: Design or Implementation Phase? Design-by-Contract (Dbc) Test-Driven Development (TDD) Motivation of this Course

Catching Defects: Design or Implementation Phase? Design-by-Contract (Dbc) Test-Driven Development (TDD) Motivation of this Course Design-by-Contract (Dbc) Test-Driven Development (TDD) Readings: OOSC2 Chapter 11 Catching Defects: Design or Implementation Phase? To minimize development costs, minimize software defects. The cost of

More information

Tutorial on ETF: the Eiffel Testing Framework Building a Bank System

Tutorial on ETF: the Eiffel Testing Framework Building a Bank System Tutorial on ETF: the Eiffel Testing Framework Building a Bank System Abstract Customers need not know details of your design of classes and features. Instead, there is an agreed interface for customers

More information

Universe Type System for Eiffel. Annetta Schaad

Universe Type System for Eiffel. Annetta Schaad Universe Type System for Eiffel Annetta Schaad Semester Project Report Software Component Technology Group Department of Computer Science ETH Zurich http://sct.inf.ethz.ch/ SS 2006 Supervised by: Dipl.-Ing.

More information

The State Design Pattern

The State Design Pattern The State Design Pattern Readings: OOSC2 Chapter 20 EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG Motivating Problem Consider the reservation panel of an online booking system: 2 of 28 State Transition

More information

1. Quality issues (5 points)

1. Quality issues (5 points) ETH Zurich Computer Science Course: Advanced Topics in Object Technology, by Bertrand Meyer Summer semester 2003 Exam (prepared by Karine Arnout) 2 July 2003 10:00 to 12:00 Name:.. Id-Nr:.. No notes, computers,

More information

Singleton Pattern Creational

Singleton Pattern Creational Singleton Pattern Creational Intent» Ensure a class has only one instance» Provide a global point of access Motivation Some classes must only have one instance file system, window manager Applicability»

More information

Encapsulation in Java

Encapsulation in Java Encapsulation in Java EECS2030: Advanced Object Oriented Programming Fall 2017 CHEN-WEI WANG Encapsulation (1.1) Consider the following problem: A person has a name, a weight, and a height. A person s

More information

The Visitor Design Pattern

The Visitor Design Pattern The Visitor Design Pattern EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG Motivating Problem (1) Based on the composite pattern you learned, design classes to model structures of arithmetic expressions

More information

Software Architecture 4. July 2005

Software Architecture 4. July 2005 Chair of Software Engineering Bertrand Meyer Software Architecture 4. July 2005 Name, First name:... I confirm with my signature, that I was able to take this exam under regular conditions and that I have

More information

Object-Oriented Software Construction

Object-Oriented Software Construction 1 Object-Oriented Software Construction Bertrand Meyer Reading assignment 2 OOSC2 Chapter 10: Genericity 3 Lecture 4: Abstract Data Types Abstract Data Types (ADT 4 Why use the objects? The need for data

More information

Semantic Analysis. CSE 307 Principles of Programming Languages Stony Brook University

Semantic Analysis. CSE 307 Principles of Programming Languages Stony Brook University Semantic Analysis CSE 307 Principles of Programming Languages Stony Brook University http://www.cs.stonybrook.edu/~cse307 1 Role of Semantic Analysis Syntax vs. Semantics: syntax concerns the form of a

More information

Automatic Verification of Computer Programs

Automatic Verification of Computer Programs Chair of Software Engineering Automatic Verification of Computer Programs these slides contain advanced material and are optional What is verification Check correctness of the implementation given the

More information

Why Design by Contract! CS 619 Introduction to OO Design and Development. Design by Contract. Fall 2012

Why Design by Contract! CS 619 Introduction to OO Design and Development. Design by Contract. Fall 2012 Why Design by Contract What s the difference with Testing? CS 619 Introduction to OO Design and Development Design by Contract Fall 2012 Testing tries to diagnose (and cure) defects after the facts. Design

More information

Mock exam 1. ETH Zurich. Date: 9./10. November 2009

Mock exam 1. ETH Zurich. Date: 9./10. November 2009 Mock exam 1 ETH Zurich Date: 9./10. November 2009 Name: Group: 1 Terminology (8 points) Put checkmarks in the checkboxes corresponding to the correct answers. Multiple correct answers are possible; there

More information

EINDHOVEN UNIVERSITY OF TECHNOLOGY

EINDHOVEN UNIVERSITY OF TECHNOLOGY EINDHOVEN UNIVERSITY OF TECHNOLOGY Department of Mathematics & Computer Science Exam Programming Methods, 2IP15, Wednesday 17 April 2013, 09:00 12:00 TU/e THIS IS THE EXAMINER S COPY WITH (POSSIBLY INCOMPLETE)

More information

Lethbridge/Laganière 2005 Chapter 9: Architecting and designing software 6

Lethbridge/Laganière 2005 Chapter 9: Architecting and designing software 6 Trying to deal with something big all at once is normally much harder than dealing with a series of smaller things Separate people can work on each part. An individual software engineer can specialize.

More information

https://asd-pa.perfplusk12.com/admin/admin_curric_maps_display.aspx?m=5507&c=618&mo=18917&t=191&sy=2012&bl...

https://asd-pa.perfplusk12.com/admin/admin_curric_maps_display.aspx?m=5507&c=618&mo=18917&t=191&sy=2012&bl... Page 1 of 13 Units: - All - Teacher: ProgIIIJavaI, CORE Course: ProgIIIJavaI Year: 2012-13 Intro to Java How is data stored by a computer system? What does a compiler do? What are the advantages of using

More information

Einführung in die Programmierung Introduction to Programming

Einführung in die Programmierung Introduction to Programming Chair of Software Engineering Einführung in die Programmierung Introduction to Programming Prof. Dr. Bertrand Meyer Exercise Session 6 Today Conditional Loop Abstractions Exporting s 2 Structured programming

More information

Lecture Chapter 2 Software Development

Lecture Chapter 2 Software Development Lecture Chapter 2 Software Development Large Software Projects Software Design o Team of programmers o Cost effective development Organization Communication Problem Solving Analysis of the problem Multiple

More information

Einführung in die Programmierung Introduction to Programming

Einführung in die Programmierung Introduction to Programming Chair of Software Engineering Einführung in die Programmierung Introduction to Programming Prof. Dr. Bertrand Meyer Lecture 14: Container Data Structures Topics for this lecture Containers and genericity

More information

Formal Methods for Java

Formal Methods for Java Formal Methods for Java Lecture 1: Introduction Jochen Hoenicke Software Engineering Albert-Ludwigs-University Freiburg October 26, 2011 Jochen Hoenicke (Software Engineering) Formal Methods for Java October

More information

CMSC 433 Section 0101 Fall 2012 Midterm Exam #1

CMSC 433 Section 0101 Fall 2012 Midterm Exam #1 Name: CMSC 433 Section 0101 Fall 2012 Midterm Exam #1 Directions: Test is closed book, closed notes. Answer every question; write solutions in spaces provided. Use backs of pages for scratch work. Good

More information

JAVA: A Primer. By: Amrita Rajagopal

JAVA: A Primer. By: Amrita Rajagopal JAVA: A Primer By: Amrita Rajagopal 1 Some facts about JAVA JAVA is an Object Oriented Programming language (OOP) Everything in Java is an object application-- a Java program that executes independently

More information

Course Text. Course Description. Course Objectives. StraighterLine Introduction to Programming in C++

Course Text. Course Description. Course Objectives. StraighterLine Introduction to Programming in C++ Introduction to Programming in C++ Course Text Programming in C++, Zyante, Fall 2013 edition. Course book provided along with the course. Course Description This course introduces programming in C++ and

More information

CS-140 Fall 2017 Test 1 Version Practice Practie for Sept. 27, Name:

CS-140 Fall 2017 Test 1 Version Practice Practie for Sept. 27, Name: CS-140 Fall 2017 Test 1 Version Practice Practie for Sept. 27, 2017 Name: 1. (10 points) For the following, Check T if the statement is true, the F if the statement is false. (a) T F : In mathematics,

More information

Data Structures and Abstract Data Types

Data Structures and Abstract Data Types Data Structures and Abstract Data Types What are we ing today: Introduction to Abstract Data Types (ADTs) specification of a data structure without giving details of its implementations ne via short form,

More information

Index. Index. More information. block statements 66 y 107 Boolean 107 break 55, 68 built-in types 107

Index. Index. More information. block statements 66 y 107 Boolean 107 break 55, 68 built-in types 107 A abbreviations 17 abstract class 105 abstract data types 105 abstract method 105 abstract types 105 abstraction 92, 105 access level 37 package 114 private 115 protected 115 public 115 accessors 24, 105

More information

Solution 9: Data structures

Solution 9: Data structures Solution 9: Data structures ETH Zurich 1 Choosing data structures 1. You can use a ubly-linked list. An arrayed list is also suitable if it is implemented as a circular buffer (that is, the list can start

More information

In-Class Exercises. ETH Zurich. November

In-Class Exercises. ETH Zurich. November In-Class Exercises ETH Zurich November 28 2012 1 Contracts ETH students recently designed a special kind of oven for cooking potatoes. Here are some facts about such an oven: each oven is equipped with

More information

Chapter 1: Programming Principles

Chapter 1: Programming Principles Chapter 1: Programming Principles Object Oriented Analysis and Design Abstraction and information hiding Object oriented programming principles Unified Modeling Language Software life-cycle models Key

More information

The Eiffel language. Slides partly based on :

The Eiffel language. Slides partly based on : The Eiffel language Slides partly based on : http://se.inf.ethz.ch/courses/2015b_fall/eprog/english_index.html Eiffel, in brief Procedural, object-oriented programming language created by Bertrand Meyer

More information

CSE 331. Programming by contract: pre/post conditions; Javadoc

CSE 331. Programming by contract: pre/post conditions; Javadoc CSE 331 Programming by contract: pre/post conditions; Javadoc slides created by Marty Stepp based on materials by M. Ernst, S. Reges, D. Notkin, R. Mercer, Wikipedia http://www.cs.washington.edu/331/ 1

More information

Assignment 2 - Specifications and Modeling

Assignment 2 - Specifications and Modeling Assignment 2 - Specifications and Modeling Exercise 1 A way to document the code is to use contracts. For this exercise, you will have to consider: preconditions: the conditions the caller of a method

More information

Control flow in Eiffel

Control flow in Eiffel Announcements Assignment will be posted this week.» We ll make sure you have enough time to it! A little more Eiffel, Genericity and ADTs Week 3, Lecture 4 January 16 Section N Review What is the definition

More information

Eiffel Loops & Iteration

Eiffel Loops & Iteration EIFFEL SOFTWARE Eiffel Loops & Iteration 16 MAY 2018 SUMMARY GENERALLY ITERABLE THINGS ACROSS LOOP - BASICS ACROSS LOOP - INDEXING ACROSS LOOP - REVERSING ACROSS LOOP - SKIPPING ACROSS LOOP - ARRAY ACROSS

More information

Object-oriented basics. Object Class vs object Inheritance Overloading Interface

Object-oriented basics. Object Class vs object Inheritance Overloading Interface Object-oriented basics Object Class vs object Inheritance Overloading Interface 1 The object concept Object Encapsulation abstraction Entity with state and behaviour state -> variables behaviour -> methods

More information

Lecture 7: Data Abstractions

Lecture 7: Data Abstractions Lecture 7: Data Abstractions Abstract Data Types Data Abstractions How to define them Implementation issues Abstraction functions and invariants Adequacy (and some requirements analysis) Towards Object

More information

UNIT 3 ARRAYS, RECURSION, AND COMPLEXITY CHAPTER 11 CLASSES CONTINUED

UNIT 3 ARRAYS, RECURSION, AND COMPLEXITY CHAPTER 11 CLASSES CONTINUED UNIT 3 ARRAYS, RECURSION, AND COMPLEXITY CHAPTER 11 CLASSES CONTINUED EXERCISE 11.1 1. static public final int DEFAULT_NUM_SCORES = 3; 2. Java allocates a separate set of memory cells in each instance

More information

Lecture 13: Introduction to inheritance and genericity

Lecture 13: Introduction to inheritance and genericity Chair of Software Engineering Einführung in die Programmierung Introduction to Programming Prof. Dr. Bertrand Meyer Lecture 13: Introduction to inheritance and genericity On the menu for today (& next

More information

CSI33 Data Structures

CSI33 Data Structures Outline Department of Mathematics and Computer Science Bronx Community College August 29, 2018 Outline Outline 1 Chapter 2: Data Abstraction Outline Chapter 2: Data Abstraction 1 Chapter 2: Data Abstraction

More information

TIME: 3 HOURS MARKS: a. Develop a java program to sort an array of N numbers in ascending order. (40)

TIME: 3 HOURS MARKS: a. Develop a java program to sort an array of N numbers in ascending order. (40) ANNA UNIVERSITY: CHENNAI-600 025 B.E/B.TECH DEGREE EXAMINATIONS, OCT/NOV. 2013 Regulations -2008 Fifth Semester B.TECH INFORMATION TECHNOLOGY IT2305 JAVA PROGRAMMING LAB TIME: 3 HOURS MARKS: 100 1. a.

More information

SQL STORED ROUTINES. CS121: Relational Databases Fall 2017 Lecture 9

SQL STORED ROUTINES. CS121: Relational Databases Fall 2017 Lecture 9 SQL STORED ROUTINES CS121: Relational Databases Fall 2017 Lecture 9 SQL Functions 2 SQL queries can use sophisticated math operations and functions Can compute simple functions, aggregates Can compute

More information

Lecture 14: More Inheritance & Genericity

Lecture 14: More Inheritance & Genericity Chair of Software Engineering Einführung in die Programmierung Introduction to Programming Prof. Dr. Bertrand Meyer October 2006 February 2007 MP1 Lecture 14: More Inheritance & Genericity 2 Genericity:

More information

Spring 2003 Instructor: Dr. Shahadat Hossain. Administrative Matters Course Information Introduction to Programming Techniques

Spring 2003 Instructor: Dr. Shahadat Hossain. Administrative Matters Course Information Introduction to Programming Techniques 1 CPSC2620 Advanced Programming Spring 2003 Instructor: Dr. Shahadat Hossain 2 Today s Agenda Administrative Matters Course Information Introduction to Programming Techniques 3 Course Assessment Lectures:

More information

PROGRAMMING IN C AND C++:

PROGRAMMING IN C AND C++: PROGRAMMING IN C AND C++: Week 1 1. Introductions 2. Using Dos commands, make a directory: C:\users\YearOfJoining\Sectionx\USERNAME\CS101 3. Getting started with Visual C++. 4. Write a program to print

More information

Self-review Questions

Self-review Questions 7Class Relationships 106 Chapter 7: Class Relationships Self-review Questions 7.1 How is association between classes implemented? An association between two classes is realized as a link between instance

More information

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR 603203 DEPARTMENT OF COMPUTER SCIENCE & APPLICATIONS QUESTION BANK (2017-2018) Course / Branch : M.Sc CST Semester / Year : EVEN / II Subject Name

More information

CO Java SE 8: Fundamentals

CO Java SE 8: Fundamentals CO-83527 Java SE 8: Fundamentals Summary Duration 5 Days Audience Application Developer, Developer, Project Manager, Systems Administrator, Technical Administrator, Technical Consultant and Web Administrator

More information

CS246 Software Abstraction and Specification Final Examination

CS246 Software Abstraction and Specification Final Examination CS246 Software Abstraction and Specification ination Spring 2007 Date: 04-Aug-2007 Time: 4.00 6.30pm Permitted Aids: None 14 pages Student Name: UW Student ID: Instructions: (Read carefully before the

More information

BON Business Object Notation Based on slides by Prof. Paige

BON Business Object Notation Based on slides by Prof. Paige BON Business Object Notation Based on slides by Prof. Paige 17-1 What is it? Notation for modeling object oriented software» Static: specifies classes, class relationships» Dynamic: behavioural properties

More information

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK Degree & Branch : B.E E.C.E. Year & Semester : II / IV Section : ECE 1, 2 &

More information

Java: advanced object-oriented features

Java: advanced object-oriented features Chair of Software Engineering Carlo A. Furia, Marco Piccioni, Bertrand Meyer Java: advanced object-oriented features Chair of Software Engineering Carlo A. Furia, Marco Piccioni, Bertrand Meyer Packages

More information

The Dependent Delegate Dilemma

The Dependent Delegate Dilemma The Depent Delegate Dilemma Bertrand Meyer, ETH Zurich ABSTRACT A criticism of the object-oriented style of programming is that the notion of class invariant seems to collapse in non-trivial client-supplier

More information

SFPL Simple Floor Plan Language 09/25/2005

SFPL Simple Floor Plan Language 09/25/2005 SFPL Simple Floor Plan Language 09/25/2005 By: Huang-Hsu Chen (hc2237) Xiao Song Lu(xl2144) Natasha Nezhdanova(nin2001) Ling Zhu(lz2153) Motivation and Introduction Today, many people would like their

More information

Programming with Contracts. Juan Pablo Galeotti, Alessandra Gorla Saarland University, Germany

Programming with Contracts. Juan Pablo Galeotti, Alessandra Gorla Saarland University, Germany Programming with Contracts Juan Pablo Galeotti, Alessandra Gorla Saarland University, Germany Contract A (formal) agreement between Method M (callee) Callers of M Rights Responsabilities Rights Responsabilities

More information

XII- COMPUTER SCIENCE VOL-II MODEL TEST I

XII- COMPUTER SCIENCE VOL-II MODEL TEST I MODEL TEST I 1. What is the significance of an object? 2. What are Keyword in c++? List a few Keyword in c++?. 3. What is a Pointer? (or) What is a Pointer Variable? 4. What is an assignment operator?

More information

III lecture: Contracts and Abstract Data Types. An obligation from last lecture... An obligation from last lecture... (2) January/February 2013

III lecture: Contracts and Abstract Data Types. An obligation from last lecture... An obligation from last lecture... (2) January/February 2013 III lecture: Contracts and Data Types Dip. di Informatica Università degli Studi di Milano, Italy mattia.monga@unimi.it January/February 201 An obligation from last lecture... An obligation from last lecture...

More information

Introduction C H A P T E R1. Exercises

Introduction C H A P T E R1. Exercises C H A P T E R1 Introduction Chapter 1 provides a general overview of the nature and purpose of database systems. The most important concept in this chapter is that database systems allow data to be treated

More information

Adding Contracts to C#

Adding Contracts to C# Adding Contracts to C# Peter Lagace ABSTRACT Design by contract is a software engineering technique used to promote software reliability. In order to use design by contract the selected programming language

More information

3. Design by Contract

3. Design by Contract 3. Design by Contract Oscar Nierstrasz Design by Contract Bertrand Meyer, Touch of Class Learning to Program Well with Objects and Contracts, Springer, 2009. 2 Roadmap > Contracts > Stacks > Design by

More information

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p.

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p. Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p. 9 Self-Test Exercises p. 11 History Note p. 12 Programming and

More information

Software Architecture. Abstract Data Types

Software Architecture. Abstract Data Types Software Architecture Abstract Data Types Mathematical description An ADT is a mathematical specification Describes the properties and the behavior of instances of this type Doesn t describe implementation

More information

Inheritance Readings: OOSCS2 Chapters 14 16

Inheritance Readings: OOSCS2 Chapters 14 16 Inheritance Readings: OOSCS2 Chapters 14 16 EECS3311 A: Software Design Fall 2018 CHEN-WEI WANG Aspects of Inheritance Code Reuse Substitutability Polymorphism and Dynamic Binding [ compile-time type checks

More information

Defensive Programming

Defensive Programming Defensive Programming Software Engineering CITS1220 Based on the Java1200 Lecture notes by Gordon Royle Lecture Outline Why program defensively? Encapsulation Access Restrictions Documentation Unchecked

More information

Motivating Problem (2) Design for tree structures with whole-part hierarchies. The Composite Design Pattern

Motivating Problem (2) Design for tree structures with whole-part hierarchies. The Composite Design Pattern Motivating Problem (2) Design for tree structures with whole-part hierarchies. The Composite Design Pattern CABINET CHASSIS CHASSIS EECS3311 A: Software Design Fall 2018 POWER_SUPPLY CHEN-WEI WANG 3 of

More information

Chapter 6 Introduction to Defining Classes

Chapter 6 Introduction to Defining Classes Introduction to Defining Classes Fundamentals of Java: AP Computer Science Essentials, 4th Edition 1 Objectives Design and implement a simple class from user requirements. Organize a program in terms of

More information

Testing, Debugging, and Verification

Testing, Debugging, and Verification Testing, Debugging, and Verification Formal Specification, Part II Srinivas Pinisetty 23 November 2017 Introduction Today: Introduction to Dafny: An imperative language with integrated support for formal

More information

Constants, once routines, and helper functions

Constants, once routines, and helper functions Chair of Software Engineering Constants, once routines, and helper functions these slides contain advanced material and are optional Basic constants Defining constants for basic types in Eiffel class CONSTANTS

More information

Object Oriented Programming with Java

Object Oriented Programming with Java Object Oriented Programming with Java What is Object Oriented Programming? Object Oriented Programming consists of creating outline structures that are easily reused over and over again. There are four

More information

15-418, Spring 2008 OpenMP: A Short Introduction

15-418, Spring 2008 OpenMP: A Short Introduction 15-418, Spring 2008 OpenMP: A Short Introduction This is a short introduction to OpenMP, an API (Application Program Interface) that supports multithreaded, shared address space (aka shared memory) parallelism.

More information

Introduction to Visual Basic and Visual C++ Introduction to Java. JDK Editions. Overview. Lesson 13. Overview

Introduction to Visual Basic and Visual C++ Introduction to Java. JDK Editions. Overview. Lesson 13. Overview Introduction to Visual Basic and Visual C++ Introduction to Java Lesson 13 Overview I154-1-A A @ Peter Lo 2010 1 I154-1-A A @ Peter Lo 2010 2 Overview JDK Editions Before you can write and run the simple

More information

Lecture 10 Design by Contract

Lecture 10 Design by Contract CS 5959 Writing Solid Code Fall 2015 Nov-23 Lecture 10 Design by Contract Zvonimir Rakamarić University of Utah Design by Contract Also called assume-guarantee reasoning Developers annotate software components

More information

Overview The Java Modeling Language (Part 1) Related Work

Overview The Java Modeling Language (Part 1) Related Work Overview The Java Modeling Language (Part 1) Wolfgang Schreiner Wolfgang.Schreiner@risc.jku.at Research Institute for Symbolic Computation (RISC) Johannes Kepler University, Linz, Austria http://www.risc.jku.at

More information

A Eiffel: The Essentials

A Eiffel: The Essentials A Eiffel: The Essentials This appix addresses people who are familiar with the object-oriented approach but not know Eiffel very well. It introduces all the concepts needed to understand the core of this

More information

Data Structures. BSc in Computer Science University of New York, Tirana. Assoc. Prof. Marenglen Biba 1-1

Data Structures. BSc in Computer Science University of New York, Tirana. Assoc. Prof. Marenglen Biba 1-1 Data Structures BSc in Computer Science University of New York, Tirana Assoc. Prof. Marenglen Biba 1-1 General info Course : Data Structures (3 credit hours) Instructor : Assoc. Prof. Marenglen Biba Office

More information

Assertions, pre/postconditions

Assertions, pre/postconditions Programming as a contract Assertions, pre/postconditions Assertions: Section 4.2 in Savitch (p. 239) Specifying what each method does q Specify it in a comment before method's header Precondition q What

More information

Object-Oriented Concepts and Design Principles

Object-Oriented Concepts and Design Principles Object-Oriented Concepts and Design Principles Signature Specifying an object operation or method involves declaring its name, the objects it takes as parameters and its return value. Known as an operation

More information

Object Oriented Program Correctness with OOSimL

Object Oriented Program Correctness with OOSimL Kennesaw State University DigitalCommons@Kennesaw State University Faculty Publications 12-2009 Object Oriented Program Correctness with OOSimL José M. Garrido Kennesaw State University, jgarrido@kennesaw.edu

More information

Object Oriented Programming 2013/14. Final Exam June 20, 2014

Object Oriented Programming 2013/14. Final Exam June 20, 2014 Object Oriented Programming 2013/14 Final Exam June 20, 2014 Directions (read carefully): CLEARLY print your name and ID on every page. The exam contains 8 pages divided into 4 parts. Make sure you have

More information

Runtime Checking for Program Verification Systems

Runtime Checking for Program Verification Systems Runtime Checking for Program Verification Systems Karen Zee, Viktor Kuncak, and Martin Rinard MIT CSAIL Tuesday, March 13, 2007 Workshop on Runtime Verification 1 Background Jahob program verification

More information

Assertions & Verification & Example Loop Invariants Example Exam Questions

Assertions & Verification & Example Loop Invariants Example Exam Questions 2014 November 27 1. Assertions & Verification & Example Loop Invariants Example Exam Questions 2. A B C Give a general template for refining an operation into a sequence and state what questions a designer

More information