Introduction to Object-Oriented Programming



Similar documents
Introduction to Object-Oriented Programming

The Java Series. Java Essentials I What is Java? Basic Language Constructs. Java Essentials I. What is Java?. Basic Language Constructs Slide 1

Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives

The Interface Concept

CSE 452: Programming Languages. Acknowledgements. Contents. Java and its Evolution

Lecture 7 Notes: Object-Oriented Programming (OOP) and Inheritance

Handout 1. Introduction to Java programming language. Java primitive types and operations. Reading keyboard Input using class Scanner.

Contents. Java - An Introduction. Java Milestones. Java and its Evolution

Moving from CS 61A Scheme to CS 61B Java

Chapter 1 Fundamentals of Java Programming

History OOP languages Year Language 1967 Simula Smalltalk

Glossary of Object Oriented Terms

CSCI 253. Object Oriented Programming (OOP) Overview. George Blankenship 1. Object Oriented Design: Java Review OOP George Blankenship.

Chapter 1 Java Program Design and Development

Chapter 13 - Inheritance

Multichoice Quetions 1. Atributes a. are listed in the second part of the class box b. its time is preceded by a colon. c. its default value is

11 November

CS506 Web Design and Development Solved Online Quiz No. 01

Java Programming. Binnur Kurt Istanbul Technical University Computer Engineering Department. Java Programming. Version 0.0.

SE 360 Advances in Software Development Object Oriented Development in Java. Polymorphism. Dr. Senem Kumova Metin

CSC 551: Web Programming. Spring 2004

Software Design Principles and Guidelines

Object Oriented Design

C++ INTERVIEW QUESTIONS

Compiling Object Oriented Languages. What is an Object-Oriented Programming Language? Implementation: Dynamic Binding

INTRODUCTION TO COMPUTER PROGRAMMING. Richard Pierse. Class 7: Object-Oriented Programming. Introduction

CS170 Lab 11 Abstract Data Types & Objects

Object-Oriented Programming

Java CPD (I) Frans Coenen Department of Computer Science

Managing Variability in Software Architectures 1 Felix Bachmann*

Introduction to Java Applications Pearson Education, Inc. All rights reserved.

1/20/2016 INTRODUCTION

Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program

Introduction to Object-Oriented Programming

Advanced Data Structures

Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program

Software Engineering Techniques

Crash Course in Java

CEC225 COURSE COMPACT

public static void main(string[] args) { System.out.println("hello, world"); } }

Software Quality Factors OOA, OOD, and OOP Object-oriented techniques enhance key external and internal software quality factors, e.g., 1. External (v

Polymorphism. Why use polymorphism Upcast revisited (and downcast) Static and dynamic type Dynamic binding. Polymorphism.

CS193j, Stanford Handout #10 OOP 3

AP Computer Science Java Subset

AP Computer Science A - Syllabus Overview of AP Computer Science A Computer Facilities

Characteristics of Java (Optional) Y. Daniel Liang Supplement for Introduction to Java Programming

D06 PROGRAMMING with JAVA. Ch3 Implementing Classes

KITES TECHNOLOGY COURSE MODULE (C, C++, DS)

CSE 1020 Introduction to Computer Science I A sample nal exam

First Java Programs. V. Paúl Pauca. CSC 111D Fall, Department of Computer Science Wake Forest University. Introduction to Computer Science

LAB4 Making Classes and Objects

Yosemite National Park, California. CSE 114 Computer Science I Inheritance

I PUC - Computer Science. Practical s Syllabus. Contents

CSC 551: Web Programming. Fall 2001

CSC230 Getting Starting in C. Tyler Bletsch

Introduction: Abstract Data Types and Java Review

Agenda. What is and Why Polymorphism? Examples of Polymorphism in Java programs 3 forms of Polymorphism

Embedded Programming in C/C++: Lesson-1: Programming Elements and Programming in C

Basic Java Constructs and Data Types Nuts and Bolts. Looking into Specific Differences and Enhancements in Java compared to C

COMPARISON OF OBJECT-ORIENTED AND PROCEDURE-BASED COMPUTER LANGUAGES: CASE STUDY OF C++ PROGRAMMING

Object-Oriented Programming in Java

Part I. Multiple Choice Questions (2 points each):

Introduction to Programming Block Tutorial C/C++

Cohort: BCA/07B/PT - BCA/06/PT - BCNS/06/FT - BCNS/05/FT - BIS/06/FT - BIS/05/FT - BSE/05/FT - BSE/04/PT-BSE/06/FT

LAB 1. Familiarization of Rational Rose Environment And UML for small Java Application Development

Object-Oriented Design Lecture 4 CSU 370 Fall 2007 (Pucella) Tuesday, Sep 18, 2007

Lecture 1: Introduction

Java (12 Weeks) Introduction to Java Programming Language

An Overview of Java. overview-1

6.088 Intro to C/C++ Day 4: Object-oriented programming in C++ Eunsuk Kang and Jean Yang

1001ICT Introduction To Programming Lecture Notes

Contents. 9-1 Copyright (c) N. Afshartous

Quotes from Object-Oriented Software Construction

Course MS10975A Introduction to Programming. Length: 5 Days

Java Classes. GEEN163 Introduction to Computer Programming

Visual Basic Programming. An Introduction

Realizing Enterprise Integration Patterns in WebSphere

Java applets. SwIG Jing He

To Java SE 8, and Beyond (Plan B)

Facebook Twitter YouTube Google Plus Website

Exception Handling. Overloaded methods Interfaces Inheritance hierarchies Constructors. OOP: Exception Handling 1

Object-Oriented Software Specification in Programming Language Design and Implementation

Installing Java. Table of contents

Java Programming Language

Introduction to Object-Oriented Programming in MATLAB

Ethereal: Getting Started

1. What are Data Structures? Introduction to Data Structures. 2. What will we Study? CITS2200 Data Structures and Algorithms

Building Java Programs

The Rules 1. One level of indentation per method 2. Don t use the ELSE keyword 3. Wrap all primitives and Strings

How To Write A Program In Java (Programming) On A Microsoft Macbook Or Ipad (For Pc) Or Ipa (For Mac) (For Microsoft) (Programmer) (Or Mac) Or Macbook (For

Semester Review. CSC 301, Fall 2015

Programming Language Constructs as Basis for Software Architectures

Introduction to programming

How To Teach Object Oriented Programming At An Introductory Level Course

Transcription:

Introduction to Object-Oriented Programming Objects and classes Abstract Data Types (ADT) Encapsulation and information hiding Aggregation Inheritance and polymorphism OOP: Introduction 1

Pure Object-Oriented Languages Five rules [Source: Alan Kay]: Everything in an object. A program is a set of objects telling each other what to do by sending messages. Each object has its own memory (made up by other objects). Every object has a type. All objects of a specific type can receive the same messages. Java breaks some of these rules in the name of efficiency. OOP: Introduction 2

The Object Concept An object is an encapsulation of data. An object has identity (a unique reference), state, also called characteristics behavior An object is an instance of an abstract data type. An abstract data type is implemented via a class. OOP: Introduction 3

Abstract Data Type (ADT) An ADT is a collection of objects (or values) and a corresponding set of methods. An ADT encapsulates the data representation and makes data access possible at a higher level of abstraction. Example 1: A set of vehicles with operations for starting, stopping, driving, get km/liter, etc.. Example 2: A time interval, start time, end time, duration, overlapping intervals, etc. OOP: Introduction 4

Encapsulation and Information Hiding Data can be encapsulated such that it is invisible to the "outside world". Data can only be accessed via methods. Data Function Function Function send message Data Method Method Method Procedural ADT OOP: Introduction 5

Encapsulation and Information Hiding, cont. What the "outside world" cannot see it cannot depend on! The object is a "fire-wall" between the object and the "outside world". The hidden data and methods can be changed without affecting the "outside world". Client interface An object Visible data and methods Hidden data and methods OOP: Introduction 6

Class vs. Object Class A description of the common properties of a set of objects. A concept. A class is a part of a program. Example 1: Person Example 2: Album Object A representation of the properties of a single instance. A phenomenon. An object is part of data and a program execution. Example 1: Bill Clinton, Bono, Viggo Jensen. Example 2: A Hard Day's Night, Joshua Tree, Rickie Lee Jones. OOP: Introduction 7

Type and Interface An object has type and an interface. Account balance() withdraw() deposit() Type Interface To get an object To send a message Account a = new Account() a.withdraw() OOP: Introduction 8

Instantiating Classes An instantiation is a mechanism where objects are created from a class. Always involves storage allocation for the object. A mechanism where objects are given an initial state. Static Instantiating In the declaration part of a program. A static instance is implicitly created Dynamic Instantiating In the method part of a program. A dynamic instance is created explicitly with a special command. OOP: Introduction 9

Interaction between Objects Interaction between objects happens by messages being send. A message activates a method on the calling object. An object O1 interacts with another object O2 by calling a method on O2 (must be part of the client interface). O1 sends O2 a message O1 and O2 must be related to communicate. The call of a method corresponds to a procedure call in a nonobject-oriented language such as C or Pascal. O1 message message O3 O2 message OOP: Introduction 10

Phenomenon and Concept A phenomenon is a thing in the real world that has individual existence. A concept is a generalization, derived from a set of phenomena and based on the common properties of these phenomena. Characteristics of a concept A name Intension, the set of properties of the phenomenon Extension, the set of phenomena covered by the concept. OOP: Introduction 11

Classification and Exemplification A classification is a description of which phenomena that belongs to a concept. An exemplification is a phenomenon that covers the concept Concept classification exemplification Phenomenon OOP: Introduction 12

Aggregation and Decomposition An aggregation consists of a number of (sub-)concepts which collectively is considered a new concept. A decomposition splits a single concept into a number of (sub-)concepts. Concept Concept Concept Concept decomposition aggregation Concept Concept Concept Concept OOP: Introduction 13

Aggregation and Decomposition, Example Idea: make new objects by combining existing objects. Reusing the implementation! Car start() drive() Engine Gearbox Doors[4] new class Engine start() stop() Gearbox up() down() Door open() close() existing classes OOP: Introduction 14

Generalization and Specialization Generalization creates a concept with a broader scope. Specialization creates a concept with a narrower scope. Reusing the interface! Concept A Concept C specialization Concept B generalization Concept D Vehicle Car Hatchback Station car Sedan Truck Pickup OOP: Introduction 15

Generalization and Specialization, Example Inheritance: get the interface from the general class. Objects related by inheritance are all of the same type. Shape draw() resize() Circle draw() resize() Line draw() resize() Rectangle draw() resize() Square draw() resize() OOP: Introduction 16

Code Example void dosomething(shape s){ s.draw(); // magically calls on specific class s.resize(); } Circle c = new Circle(); Line l = new Line(); Rectangle r = new Rectangle(); dosomething(c); dosomething(l); dosomething(r); // dynamic binding Polymorphism: One piece of code works with all shape objects. Dynamic binding: How polymorphism is implemented. OOP: Introduction 17

Structuring by Program or Data? What are the actions of the program vs. which data does the program act on. Top-down: Stepwise program refinement Bottom-up: Focus on the stable data parts then add methods Object-oriented programming is bottom-up. Programs are structure with outset in the data. C and Pascal programs are typically implemented in a more top-down fashion. OOP: Introduction 18

Java Program Structure // comment on the class public class MyProg { String s = Viggo ; variable } /** * The main method (comment on method) */ public static void main (String[] args){ // just write some stuff System.out.println ("Hello World"); } method header method body OOP: Introduction 19

Java Class Example Car /** A simple class modeling a car. */ public class Car { // instance variables private String make; private String model; private double price; // String representation of the car public Car(String m, String mo, double p) { make = m; model = mo; price = p; } // String representation of the car public String tostring() { return "make: " + make + " model: " + model + " price: " + price; } } OOP: Introduction 20

Byte Code vs. Executable MyProg.java MyProg.cpp javac MyProg.java Java Class File MyProg.class Portable Byte Code Java Virtual Machine Operating System gcc MyProg.cpp -o myprog.exe Executable myprog.exe Operating System OOP: Introduction 21

History of Java 1990 Oak (interactive television, big failure) 1994 Java (for the Internet) Main feature: "Write Once, Run Any Where" => wrap the operating system so they all look the same Designed for A fresh start (no backward compatibility) "Pure" OOP: C++ Syntax, Smalltalk style Improvements over C++ much harder to write a bad program Internet programming Very hard to create a virus Run in a web browser (and at the server) There is a speed issue (from Java 1.3 and up much better) OOP: Introduction 22

Everything resides in a class variables and methods Difference from C/C++ Garbage collection Error and exception handling handling No global variables or methods No local static variables No separation of declaration and implementation (no header files). No explicit pointer operations (uses references) No preprocessor (but something similar) Has fewer "dark corners" Has a much larger standard library OOP: Introduction 23

Summary Classes are "recipes" for creating objects All objects are instances of classes An ADT is implemented in a class Aggregation and decomposition has-a relationship Generalization and specialization is-a or is-like-a relationship Encapsulation Key feature of object-oriented programming Separation of interface from implementation It is not possible to access the private parts of an object OOP: Introduction 24