Classes & Objects CMSC 202.

Slides:



Advertisements
Similar presentations
Classes and Objects CMSC 202. Version 9/122 Programming & Abstraction All programming languages provide some form of abstraction. – Also called information.
Advertisements

Based on Java Software Development, 5th Ed. By Lewis &Loftus
Python Objects and Classes
CS0007: Introduction to Computer Programming Introduction to Classes and Objects.
Composition CMSC 202. Code Reuse Effective software development relies on reusing existing code. Code reuse must be more than just copying code and changing.
CMSC 202 Fall 2010, Advanced Section Designing with Objects.
Road Map Introduction to object oriented programming. Classes
 2006 Pearson Education, Inc. All rights reserved Introduction to Classes and Objects.
Terms and Rules Professor Evan Korth New York University (All rights reserved)
1 Introduction to C++ Programming Concept Basic C++ C++ Extension from C.
Ranga Rodrigo. Class is central to object oriented programming.
Encapsulation CMSC 202. Types of Programmers Class programmers – Developers of new classes – Goal: Expose the minimum interface necessary to use a new.
 2003 Prentice Hall, Inc. All rights reserved. 1 Introduction to Classes and Objects Outline Introduction Classes, Objects, Member Functions and Data.
Writing Classes (Chapter 4)
Introduction to Object Oriented Programming. Object Oriented Programming Technique used to develop programs revolving around the real world entities In.
Lecture # 5 Methods and Classes. What is a Method 2 A method is a set of code which is referred to by name and can be called (invoked) at any point in.
The Java Programming Language
Lecture 2: Classes and Objects, using Scanner and String.
Constructors CMSC 202. Object Creation Objects are created by using the operator new in statements such as… The following expression invokes a special.
Topic 1 Object Oriented Programming. 1-2 Objectives To review the concepts and terminology of object-oriented programming To discuss some features of.
Chapter 10 Defining Classes. The Internal Structure of Classes and Objects Object – collection of data and operations, in which the data can be accessed.
Chapter 4 Introduction to Classes, Objects, Methods and strings
Identifiers Identifiers in Java are composed of a series of letters and digits where the first character must be a letter. –Identifiers should help to.
CSC 142 B 1 CSC 142 Java objects: a first view [Reading: chapters 1 & 2]
Programming with Java © 2002 The McGraw-Hill Companies, Inc. All rights reserved. 1 McGraw-Hill/Irwin Chapter 5 Creating Classes.
Introduction to Java Chapter 7 - Classes & Object-oriented Programming1 Chapter 7 Classes and Object-Oriented Programming.
COP INTERMEDIATE JAVA Designing Classes. Class Template or blueprint for creating objects. Their definition includes the list of properties (fields)
CMSC 202 Classes and Objects: The Basics. Version 9/09 2 Programming & Abstraction All programming languages provide some form of abstraction. –Also called.
Copyright © 2002 W. A. Tucker1 Chapter 10 Lecture Notes Bill Tucker Austin Community College COSC 1315.
IT108 Objects and Classes Part I George Mason University Revised 4/3/2012.
Java™ How to Program, 9/e © Copyright by Pearson Education, Inc. All Rights Reserved.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 6 Objects and Classes.
1 CSE Programming in C++. 2 Overview Sign roster list Syllabus and Course Policies Introduction to C++ About Lab 1 Fill Questionnaire.
Object Oriented Programming and Data Abstraction Rowan University Earl Huff.
OOP Basics Classes & Methods (c) IDMS/SQL News
CMSC 202 Classes and Objects. Aug 6, Programming Languages All programming languages provide some form of abstraction Procedural language (eg C)
ITM 3521 ITM 352 Functions. ITM 3522 Functions  A function is a named block of code (i.e. within {}'s) that performs a specific set of statements  It.
CMSC202 Computer Science II for Majors Lecture 06 – Classes and Objects Dr. Katherine Gibson Based on slides by Chris Marron at UMBC.
Copyright © 2012 Pearson Education, Inc. Chapter 4 Writing Classes : Review Java Software Solutions Foundations of Program Design Seventh Edition John.
Topic: Classes and Objects
More Sophisticated Behavior
Programming Logic and Design Seventh Edition
Chapter 3: Using Methods, Classes, and Objects
Chapter 4: Writing Classes
Constructors CMSC 202.
OBJECT ORIENTED CONCEPTS
Classes and Objects 2nd Lecture
Methods The real power of an object-oriented programming language takes place when you start to manipulate objects. A method defines an action that allows.
Design by Contract Fall 2016 Version.
Subroutines Idea: useful code can be saved and re-used, with different data values Example: Our function to find the largest element of an array might.
Chapter 3 Introduction to Classes, Objects Methods and Strings
Classes and Objects Encapsulation
Chapter 6 Methods: A Deeper Look
Outline Writing Classes Copyright © 2012 Pearson Education, Inc.
Group Status Project Status.
Chapter 4 Writing Classes.
Defining Classes and Methods
Java Classes and Objects
CMSC 202 Classes and Objects.
Anatomy of a Java Program
Outline Anatomy of a Class Encapsulation Anatomy of a Method
Defining Classes and Methods
Classes, Objects and Methods
Review of Previous Lesson
CMSC 202 Exceptions.
ITM 352 Functions.
Object-Oriented Programming and class Design
Introduction to Computer Science and Object-Oriented Programming
Presentation transcript:

Classes & Objects CMSC 202

Programming & Abstraction All programming languages provide some form of abstraction. Also called information hiding Separating how one uses a program and how the program has been implemented Procedural Programming Data Abstraction – using data structures Control Abstraction – using functions Object Oriented Languages Data and Control Abstraction – uses classes

Procedural vs. Object Oriented Calculate the area of a circle given the specified radius Sort this class list given an array of students Calculate the student’s GPA given a list of courses Circle, what’s your radius? Class list, sort your students Transcript, what’s the student’s GPA?

What is a Class? From the Dictionary A kind or category A set, collection, group, or configuration containing members regarded as having certain attributes or traits in common From an Object Oriented Perspective A group of objects with similar properties, common behavior, common relationships with other objects, and common semantics We use classes for abstraction purposes.

Classes Classes are “blueprints” for creating a group of objects. A bird class to create bird objects A car class to create car objects A shoe class to create shoe objects The blueprint defines The class’s state/attributes as variables The class’s behavior as methods

Class or Object? Variables of class types may be created just like variables of built-in types. Using a set of blueprints you could create a bakery. You can create as many instances of the class type as you like. There is more than one bakery in Baltimore. The challenge is to define classes and create objects that satisfy the problem. Do we need an Oven class?

Class Interface The requests you can make of an object are determined by its interface. Do we need to know how bagels are made in order to buy one? All we actually need to know is which bakery to go to and what action we want to perform. Type Bakery Class Is the bakery open/closed? Buy bread Buy bagel Buy muffin Buy coffee … Interface

Implementation Code and hidden data in the class that satisfies requests make up the class's implementation. What’s hidden in a bakery? Every request made of an object must have an associated method that will be called. In OO-speak we say that you are sending a message to the object, which responds to the message by executing the appropriate code.

Class Definitions We’ve already seen... How to use classes and the objects created from them... How to invoke their methods using the dot notation… Let us add to what we already know … Scanner input = new Scanner(System.in); int num = input.nextInt();

Class Definition A class definition defines the class blueprint. The behaviors/services/actions/operations of a class are implemented methods. Also known as member functions The state of the class is stored in its data members. Also known as fields, attributes, or instance variables A challenging aspect of OOP is determining what classes get modeled and at what level of detail. This answer will vary based on the problem at hand.

Objects Remember an object is a particular instance of an a class. As such, all objects have… Data Members The variable types and names (same across all instances) The members of each object can hold different values (unique to that instance). The state of an object is defined by these values. Methods The tasks that the object can perform (same across all instances)

Anatomy of a Java Class public class Access modifier (more on this later) Keyword class Name of the class public class Bakery { Class body: data members, methods } NO semi-colon

Data Members Objects store their individual states in “non-static fields” known as data members. Primitive types or reference types Accessible by all methods of the class Thus the members are said to have class scope. Members are referenced using the dot operator… numItems = array.length;

Anatomy of Class Data Members public class Bakery { Optional access modifier (more on this later) Data member type Data member name public boolean closed ; int numBagels ; + Remaining class body (methods) }

Car Example What characteristics (data members) are necessary to store the state for a Car? public class Car { int horsepower; int numDoors; int year; String vin; String color; String model; String make; // ... }

Methods Objects are sent messages which in turn call methods. Methods may be passed arguments and may return something as well. Methods are available to all instances of the class. Like data members, methods are also referenced using the dot operator … System.out.println(name.charAt(0));

Anatomy of a Method public int Optional access modifier (More on this later) return type (may be void) Name of method Optional parameters public int getBagelCount () { Method code: local variables and statements }

Car Example What services/behaviors might be appropriate for a Car? public class Car { // ... void unlockDoors() { /* ... */ } void changeColor(String color) { /* ... */ } void changeGear(char gear) { /* ... */ } boolean isParkingBrakeEngaged() { /* ... */ } void engageParkingBrake() { /* ... */ } void disengageParkingBrake() { /* ... */ } void depressAccelerator(float percentage) { /* ... */ } void depressBrake(float percentage) { /* ... */ } }

Creating a Car The following defines a reference variable of type Car. However there is no Car object yet! The statement myCar = new Car( ) creates a “new” Car object and associates it with the variable “myCar”. Now “myCar” refers to a Car object. For convenience, these statements can be (and are typically) combined. Car myCar; myCar = new Car(); Car myCar = new Car();

Car Example public static void main(String args[]) { Car myCar = new Car(); myCar.vin = "123567890ABCDEF"; myCar.numLiters = 2; myCar.horsepower = 195; myCar.year = 2008; myCar.changeColor("Black"); System.out.println("Car is colored: " + myCar.color); System.out.println("Car is " + (2011 - myCar.year) + " years old"); }

Which color are we referring to? Painting the Car We can change the state of any Car through services defined in the class definition. The compiler assumes that all uses of color refer to the method parameter and hence this code has no effect. public void changeColor(String color){ color = color; } Which color are we referring to? // change car color myCar.changeColor("Blue"); System.out.println(myCar.color);

The Calling Object Within a method, a variable is reconciled in a specific order. The parameter list is checked for a variable with that name. The class’s members are checked to see if there’s a match. What we’re really looking for is something to refer to the calling object… In Java, the reserved word this represents the calling object. It is sometimes necessary to identify the calling object. It is also a matter of style. public void setColor(String color) { "calling object".color = color; } public void setColor(String color) { this.color = color; }

Printing an Object If you print you class by passing it to System.out.println(), you’ll get some cryptic looking output like so … The print methods will utilize a method called toString() to format the output if you’ve implemented it. It’s usually a good idea to implement this method so you can easily see the state of your objects. Car@54fc9944 public String toString() { String state = ""; state += "make: " + make; state += " model: " + model; // ... return state; }

Object Equality Reference variables cannot be tested for equality using the == operator. Testing two reference types for equality will resulting in comparing the underlying addresses. … public static void main(String[] args){ Car car1 = new Car(); Car car2 = new Car(); // customize both cars if(car1 == car2){ System.out.println("Same Car"); } else{ System.out.println("Different Cars"); } FF00 car1 … FF20 car2

.equals() To actually compare the state of two objects we must implement a .equals() method. public boolean equals(Car otherCar){ if(horsepower != otherCar.horsepower){ return false; } if(!make.equals(otherCar.make)){ // ... compare necessary members ... // otherwise, if all equal return true return true; Notes: Returns a boolean Compares only Cars as implemented Definition of what constitutes “equals” may vary class to class

Class & Method Documentation Class and method level documentation is intended for the consumer of the class – it serves to help the user… Determine if the class is useful/applicable to their problem Find the appropriate method(s) and use them correctly Class comments High level documentation as to what the class represents and does Method comments — important to explain… What the method does What the method takes as arguments What it returns Pre-conditions and Post-conditions

Pre-conditions & Post-conditions Pre and post-conditions are important to document in the method comments. Pre-conditions All assumptions made about functional parameters and the state of the calling object. For example: The parameter mileage is non-negative. Post-conditions All assumptions a user can make after method execution. For example: The car will have a new paint color.

Javadocs Java provides API documentation (known as javadocs) for the built-in class library. The documentation for each class contains class and method-level documentation. Found online (e.g. String, Math, Scanner) These documents are created using the javadoc tool. Required for CMSC 202 project documentation Demonstrated in Lab 1

Javadoc Format Free-form text to describe method @param tag to identity and describe parameters You should have a @param tag for each argument. @return tag to detail what is returned when called /** * <description of what the method does> * * @param arg1 <description of arg1> * @param arg2 <description of arg2> * @return <description of what's returned> */ <return type> methodName(<type 1> arg1, <type 2> arg2) { // method body }

Example Javadoc /** * Changes the color of the calling object's color variable * * @param color - a color that is real to change the car's color to * @return the old color of the car */ public String changeColor(String color){ String old = this.color; this.color = color; return old; }