Lecture #1. Introduction to Classes and Objects

Similar documents
Topics. Topics (Continued) 7.1 Abstract Data Types. Abstraction and Data Types. 7.2 Object-Oriented Programming

Abstraction in Software Development

Introduction to Classes

Chapter 13: Introduction to Classes Procedural and Object-Oriented Programming

Chapter 11: Structured Data

Chapter 11: Structured Data

Chapter 11: Abstract Data Types. Abstraction and Data Types. Combining Data into Structures 8/23/2014. Abstract Data Types

LECTURE 11 STRUCTURED DATA

System Design and Programming II

Chapter 9 Objects and Classes. Liang, Introduction to C++ Programming, (c) 2007 Pearson Education, Inc. All rights reserved.

Lecture 7. Log into Linux New documents posted to course webpage

! Data is stored in variables. - Perhaps using arrays and structs. ! Program is a collection of functions that perform

Kapil Sehgal PGT Computer. Science Ankleshwar Gujarat

l A class in C++ is similar to a structure. - It allows you to define a new (composite) data type. l A class contains the following: - variables AND

CS304 Object Oriented Programming Final Term

CMPT 117: Tutorial 1. Craig Thompson. 12 January 2009

! Data is stored in variables. - Perhaps using arrays and structs. ! Program is a collection of functions that perform

! Data is stored in variables. - Perhaps using arrays and structs. ! Program is a collection of functions that perform

! Data is stored in variables. - Perhaps using arrays and structs. ! Program is a collection of functions that perform

! Data is stored in variables. - Perhaps using arrays and structs. ! Program is a collection of functions that perform

Intro. Classes Beginning Objected Oriented Programming. CIS 15 : Spring 2007

3.Constructors and Destructors. Develop cpp program to implement constructor and destructor.

l A class in C++ is similar to a structure. - It allows you to define a new (composite) data type. l A class contains the following: - variables AND

1. the base class s (default) constructor is executed first, 2. followed by the derived class s constructor

Fast Introduction to Object Oriented Programming and C++

More C++ : Vectors, Classes, Inheritance, Templates. with content from cplusplus.com, codeguru.com

CSCI 102L - Data Structures Midterm Exam #1 Fall 2011

Introduction. Introduction. Introduction

G52CPP C++ Programming Lecture 9

Chapter 10 Introduction to Classes

More C++ : Vectors, Classes, Inheritance, Templates

Review: C++ Basic Concepts. Dr. Yingwu Zhu

Objects and Classes. 1 Creating Classes and Objects. CSCI-UA 101 Objects and Classes

Object Oriented Programming COP3330 / CGS5409

CSCE 110 PROGRAMMING FUNDAMENTALS

CS304 Object Oriented Programming

Constructor - example

Question 1 Consider the following structure used to keep employee records:

clarity. In the first form, the access specifier public : is needed to {

III. Classes (Chap. 3)

An Introduction to C++

Object Oriented Programming in C#

Programming Abstractions

CS201 - Introduction to Programming Glossary By

CS313D: ADVANCED PROGRAMMING LANGUAGE

Function Overloading

Government Polytechnic, Muzaffarpur. Name of the Lab: OBJECT ORIENTED PROGRAMMING

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe

Classes - 2. Data Processing Course, I. Hrivnacova, IPN Orsay

Object Oriented Programming. Assistant Lecture Omar Al Khayat 2 nd Year

INHERITANCE: CONSTRUCTORS,

Modern C++ for Computer Vision and Image Processing. Igor Bogoslavskyi

PIC 10A. Lecture 17: Classes III, overloading

CSc 328, Spring 2004 Final Examination May 12, 2004

CS313D: ADVANCED PROGRAMMING LANGUAGE

Introduction Of Classes ( OOPS )

Short Notes of CS201

A A B U n i v e r s i t y


Tokens, Expressions and Control Structures

C++ Memory Map. A pointer is a variable that holds a memory address, usually the location of another variable in memory.

EEE-425 Programming Languages (2013) 1

Topics. Constructor. Constructors

Inheritance, and Polymorphism.

OBJECT ORIENTED PROGRAMMING. Ms. Ajeta Nandal C.R.Polytechnic,Rohtak

Data Structures using OOP C++ Lecture 3

System.out.print(); Scanner.nextLine(); String.compareTo();

CSI33 Data Structures

Lecture 8: Object-Oriented Programming (OOP) EE3490E: Programming S1 2017/2018 Dr. Đào Trung Kiên Hanoi Univ. of Science and Technology

Lecture Contents CS313D: ADVANCED PROGRAMMING LANGUAGE

AN OVERVIEW OF C++ 1

True or False (15 Points)

CS 115 Exam 3, Spring 2010

Preview 9/20/2017. Object Oriented Programing with C++ Object Oriented Programing with C++ Object Oriented Programing with C++

The C++ Language. Arizona State University 1

COMP322 - Introduction to C++ Lecture 02 - Basics of C++

Multiple Choice (Questions 1 13) 26 Points Select all correct answers (multiple correct answers are possible)

Class. SSE2034: System Software Experiment 3, Fall 2018, Jinkyu Jeong

Lecture 18 Tao Wang 1

CIS 190: C/C++ Programming. Classes in C++

Software Design and Analysis for Engineers

CS 162, Lecture 25: Exam II Review. 30 May 2018

Topic 10: Introduction to OO analysis and design

CS250 Final Review Questions

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.

CS313D: ADVANCED PROGRAMMING LANGUAGE

Programming, numerics and optimization

Chapter 6 Structures and Classes. GEDB030 Computer Programming for Engineers Fall 2017 Euiseong Seo

Name Section: M/W or T/TH. True or False (14 Points)

Introduction to Programming session 24

CS111: PROGRAMMING LANGUAGE II. Lecture 1: Introduction to classes

EEE-425 Programming Languages (2013) 1

CPE Summer 2015 Exam I (150 pts) June 18, 2015

C++ Classes & Object Oriented Programming

1. Which of the following is the correct expression of character 4? a. 4 b. "4" c. '\0004' d. '4'

COMP322 - Introduction to C++

Distributed Real-Time Control Systems. Lecture 17 C++ Programming Intro to C++ Objects and Classes

CS 376b Computer Vision

6.096 Introduction to C++

CSCE 110 PROGRAMMING FUNDAMENTALS

Transcription:

Lecture #1 Introduction to Classes and Objects

Topics 1. Abstract Data Types 2. Object-Oriented Programming 3. Introduction to Classes 4. Introduction to Objects 5. Defining Member Functions 6. Constructors 7. Destructors 8. Private Member Functions 7-2

Topics (Continued) 9. Passing Objects to Functions 10.Object Composition 11.Separating Class Specification, Implementation, and Client Code 12.Input Validation Objects 13.Structures 14.Unions 15.Introduction to Object-Oriented Analysis and Design 16.Screen Control 7-3

1. Abstract Data Types Programmer-created data types that specify legal values that can be stored operations that can be done on the values The user of an abstract data type (ADT) does not need to know any implementation details (e.g., how the data is stored or how the operations on it are carried out) 7-4

Abstraction and Data Types Abstraction: a definition that captures general characteristics without details An abstract triangle is a 3-sided polygon. A specific triangle may be scalene, isosceles, or equilateral Data Type: defines the kind of values that can be stored and the operations that can be performed on it 7-5

2. Object-Oriented Programming Procedural programming uses variables to store data, focuses on the processes/ functions that occur in a program. Data and functions are separate and distinct. Object-oriented programming is based on objects that encapsulate the data and the functions that operate on it. 7-6

Object-Oriented Programming Terminology object: software entity that combines data and functions that act on the data in a single unit attributes: the data items of an object, stored in member variables member functions (methods): procedures/ functions that act on the attributes of the class 7-7

More Object-Oriented Programming Terminology data hiding: restricting access to certain members of an object. The intent is to allow only member functions to directly access and modify the object s data encapsulation: the bundling of an object s data and procedures into a single entity 7-8

Object Example Square Member variables (attributes) int side; Member functions void setside(int s) { side = s; } int getside() { return side; } Square object s data item: side Square object s functions: setside - set the size of the side of the square, getside - return the size of the side of the square 7-9

3. Introduction to Classes Class: a programmer-defined datatype used to define objects It is a pattern for creating objects Class declaration format: class classname { declaration; }; declaration; Notice the required ; 7-10

Access Specifiers Used to control access to members of the class. Each member is declared to be either public: can be accessed by functions outside of the class or private: can only be called by or accessed by functions that are members of the class 7-11

Class Example Access specifiers class Square { private: int side; public: void setside(int s) { side = s; } int getside() { return side; } }; 7-12

More on Access Specifiers Can be listed in any order in a class Can appear multiple times in a class If not specified, the default is private 7-13

4. Introduction to Objects An object is an instance of a class Defined just like other variables Square sq1, sq2; Can access members using dot operator sq1.setside(5); cout << sq1.getside(); 7-14

Types of Member Functions Acessor, get, getter function: uses but does not modify a member variable ex: getside Mutator, set, setter function: modifies a member variable ex: setside 7-15

5. Defining Member Functions Member functions are part of a class declaration Can place entire function definition inside the class declaration or Can place just the prototype inside the class declaration and write the function definition after the class 7-16

Defining Member Functions Inside the Class Declaration Member functions defined inside the class declaration are called inline functions Only very short functions, like the one below, should be inline functions int getside() { return side; } 7-17

Inline Member Function Example inline functions class Square { private: int side; public: void setside(int s) { side = s; } int getside() { return side; } }; 7-18

Defining Member Functions After the Class Declaration Put a function prototype in the class declaration In the function definition, precede function name with class name and scope resolution operator (::) int Square::getSide() { return side; } 7-19

Conventions and a Suggestion Conventions: Member variables are usually private Accessor and mutator functions are usually public Use get in the name of accessor functions, set in the name of mutator functions Suggestion: calculate values to be returned in accessor functions when possible, to minimize the potential for stale data 7-20

Tradeoffs of Inline vs. Regular Member Functions When a regular function is called, control passes to the called function the compiler stores return address of call, allocates memory for local variables, etc. Code for an inline function is copied into the program in place of the call when the program is compiled larger executable program, but less function call overhead, possibly faster execution 7-21

6. Constructors A constructor is a member function that is used to initialize data members of a class Is called automatically when an object of the class is created Must be a public member function Must be named the same as the class Must have no return type 7-22

Constructor 2 Examples Inline: class Square {... public: Square(int s) { side = s; }... }; Declaration outside the class: Square(int); //prototype //in class Square::Square(int s) { side = s; } 7-23

Overloading Constructors A class can have more than 1 constructor Overloaded constructors in a class must have different parameter lists Square(); Square(int); 7-24

The Default Constructor Constructors can have any number of parameters, including none A default constructor is one that takes no arguments either due to No parameters or All parameters have default values If a class has any programmer-defined constructors, it must have a programmerdefined default constructor 7-25

Default Constructor Example class Square { private: int side; Has no parameters public: Square() // default { side = 1; } // constructor }; // Other member // functions go here 7-26

Another Default Constructor Example class Square { private: int side; Has parameter but it has a default value public: Square(int s = 1) // default { side = s; } // constructor }; // Other member // functions go here 7-27

Invoking a Constructor To create an object using the default constructor, use no argument list and no () Square square1; To create an object using a constructor that has parameters, include an argument list Square square1(8); 7-28

7. Destructors Public member function automatically called when an object is destroyed Destructor name is ~classname, e.g., ~Square Has no return type Takes no arguments Only 1 destructor is allowed per class (i.e., it cannot be overloaded) 7-29

8. Private Member Functions A private member function can only be called by another member function of the same class It is used for internal processing by the class, not for use outside of the class 7-30

9. Passing Objects to Functions A class object can be passed as an argument to a function When passed by value, function makes a local copy of object. Original object in calling environment is unaffected by actions in function When passed by reference, function can use set functions to modify the object. 7-31

Notes on Passing Objects Using a value parameter for an object can slow down a program and waste space Using a reference parameter speeds up program, but allows the function to modify data in the structure To save space and time, while protecting structure data that should not be changed, use a const reference parameter void showdata(const Square &s) // header 7-32

Returning an Object from a Function A function can return an object Square initsquare(); s1 = initsquare(); Function must define a object for internal use to use with return statement // prototype // call 7-33

Returning an Object Example Square initsquare() { Square s; // local variable int inputsize; cout << "Enter the length of side: "; cin >> inputsize; s.setside(inputsize); return s; } 7-34

10. Object Composition Occurs when an object is a member variable of another object. Often used to design complex objects whose members are simpler objects ex. (from book): Define a rectangle class. Then, define a carpet class and use a rectangle object as a member of a carpet object. 7-35

Object Composition, cont. 7-36

Rectangle class first declaration Carpet class uses Rectangle object 7-37

7-38

11. Separating Class Specification, Implementation, and Client Code Separating class declaration, member function definitions, and the program that uses the class into separate files is considered good design 7-39

Using Separate Files Place class declaration in a header file that serves as the class specification file. Name the file classname.h (for example, Square.h) Place member function definitions in a class implementation file. Name the file classname.cpp (for example, Square.cpp)This file should #include the class specification file. A client program (client code) that uses the class must #include the class specification file and be compiled and linked with the class implementation file. 7-40

Include Guards Used to prevent a header file from being included twice Format: #ifndef symbol_name #define symbol_name... (normal contents of header file) #endif symbol_name is usually the name of the header file, in all capital letters: #ifndef SQUARE_H #define SQUARE_H... #endif 7-41

Contents of Rectangle.h // File Rectangle.h -- Rectangle class specification file #ifndef RECTANGLE_H #define RECTANGLE_H // Rectangle class declaration class Rectangle { private: double length; double width; public: bool setlength(double); bool setwidth(double); double getlength(); double getwidth(); double getarea(); }; #endif 7-42

Contents of Rectangle.cpp #include "Rectangle.h bool Rectangle::setLength(double len) { bool validdata = true; if (len >= 0) // If the len is valid length = len; // copy it to length else validdata = false; // else leave length unchanged return validdata; } bool Rectangle::setWidth(double w) { bool validdata = true; if (w >= 0) // If w is valid width = w; // copy it to width else validdata = false; // else leave width unchanged return validdata; } double Rectangle::getLength() { return length; } double Rectangle::getWidth() { return width; } double Rectangle::getArea() { return length * width; } 7-43

7-44

What Should Be Done Inside vs. Outside the Class Class should be designed to provide functions to store and retrieve data In general, I/O should be done by functions that use class objects, rather than by class member functions 7-45

12. Input Validation Objects Classes can be designed to validate user input to ensure acceptable menu choice to ensure a value is in range of valid values etc. 7-46

7.13 Structures Structure: C++ construct that allows multiple variables to be grouped together Structure Declaration Format: struct structure name { type1 field1; type2 field2; typen fieldn; }; 7-47

Example struct Declaration struct Student { int studentid; string name; short year; double gpa; }; Notice the required ; structure tag structure members 7-48

struct Declaration Notes struct names commonly begin with an uppercase letter The structure name is also called the tag Multiple fields of same type can be in a comma-separated list string name, address; 7-49

Defining Structure Variables struct declaration does not allocate memory or create variables To define variables, use structure tag as type name Student s1; s1 studentid name year gpa 7-50

Accessing Structure Members Use the dot (.) operator to refer to members of struct variables getline(cin, s1.name); cin >> s1.studentid; s1.gpa = 3.75; Member variables can be used in any manner appropriate for their data type 7-51

Displaying struct Members To display the contents of a struct variable, you must display each field separately, using the dot operator Wrong: cout << s1; // won t work! Correct: cout << s1.studentid << endl; cout << s1.name << endl; cout << s1.year << endl; cout << s1.gpa; 7-52

Comparing struct Members Similar to displaying a struct, you cannot compare two struct variables directly: if (s1 >= s2) // won t work! Instead, compare member variables: if (s1.gpa >= s2.gpa) // better 7-53

Initializing a Structure Cannot initialize members in the structure declaration, because no memory has been allocated yet struct Student // Illegal { // initialization int studentid = 1145; string name = "Alex"; short year = 1; float gpa = 2.95; }; 7-54

Initializing a Structure (continued) Structure members are initialized at the time a structure variable is created Can initialize a structure variable s members with either an initialization list a constructor 7-55

Using an Initialization List An initialization list is an ordered set of values, separated by commas and contained in { }, that provides initial values for a set of data members {12, 6, 3} // initialization list // with 3 values 7-56

More on Initialization Lists Order of list elements matters: First value initializes first data member, second value initializes second data member, etc. Elements of an initialization list can be constants, variables, or expressions {12, W, L/W + 1} // initialization list // with 3 items 7-57

Initialization List Example Structure Declaration struct Dimensions { int length, width, height; }; Structure Variable box length 12 width 6 height 3 Dimensions box = {12,6,3}; 7-58

Partial Initialization Can initialize just some members, but cannot skip over members Dimensions box1 = {12,6}; //OK Dimensions box2 = {12,,3}; //illegal 7-59

Problems with Initialization List Can t omit a value for a member without omitting values for all following members Does not work on most modern compilers if the structure contains any string objects Will, however, work with C-string members 7-60

Using a Constructor to Initialize Structure Members Similar to a constructor for a class: name is the same as the name of the struct no return type used to initialize data members It is normally written inside the struct declaration 7-61

A Structure with a Constructor struct Dimensions { int length, width, height; // Constructor Dimensions(int L, int W, int H) {length = L; width = W; height = H;} }; 7-62

Passing Arguments to a Constructor Create a structure variable and follow its name with an argument list Example: Dimensions box3(12, 6, 3); 7-63

Nested Structures A structure can have another structure as a member. struct PersonInfo { string name, address, city; }; struct Student { int studentid; }; PersonInfo pdata; short year; double gpa; 7-64

Members of Nested Structures Use the dot operator multiple times to access fields of nested structures Student s5; s5.pdata.name = "Joanne"; s5.pdata.city = "Tulsa"; 7-65

Structures as Function Arguments May pass members of struct variables to functions computegpa(s1.gpa); May pass entire struct variables to functions showdata(s5); Can use reference parameter if function needs to modify contents of structure variable 7-66

Notes on Passing Structures Using a value parameter for structure can slow down a program and waste space Using a reference parameter speeds up program, but allows the function to modify data in the structure To save space and time, while protecting structure data that should not be changed, use a const reference parameter void showdata(const Student &s) // header 7-67

Returning a Structure from a Function Function can return a struct Student getstudata(); // prototype s1 = getstudata(); // call Function must define a local structure variable for internal use to use with return statement 7-68

Returning a Structure Example Student getstudata() { Student s; // local variable cin >> s.studentid; cin.ignore(); getline(cin, s.pdata.name); getline(cin, s.pdata.address); getline(cin, s.pdata.city); cin >> s.year; cin >> s.gpa; return s; } 7-69

14. Unions Similar to a struct, but all members share a single memory location, which saves space only 1 member of the union can be used at a time Declared using key word union Otherwise the same as struct Variables defined and accessed like struct variables 7-70

Example union Declaration union WageInfo { double hourlyrate; float annualsalary; }; union tag union members Notice the required ; 7-71

15. Introduction to Object-Oriented Analysis and Design Object-Oriented Analysis: that phase of program development when the program functionality is determined from the requirements It includes identification of objects and classes definition of each class's attributes identification of each class's behaviors definition of the relationship between classes 7-72

Identify Objects and Classes Consider the major data elements and the operations on these elements Candidates include user-interface components (menus, text boxes, etc.) I/O devices physical objects historical data (employee records, transaction logs, etc.) the roles of human participants 7-73

Define Class Attributes and Behaviors For each class, determine the data elements needed by an object of that class determine the behaviors or activities that the class must perform Example: 7-74

Determine Class Responsibilities Class responsibilities: What is the class responsible to know? What is the class responsible to do? Use these to define the member functions 7-75

Relationships Between Classes Possible relationships Access ("uses-a") Ownership/Composition ("has-a") Inheritance ("is-a") 7-76

Finding the Classes Technique: Write a description of the problem domain (objects, events, etc. related to the problem) List the nouns, noun phrases, and pronouns. These are all candidate objects Refine the list to include only those objects that are relevant to the problem 7-77

Object Reuse A well-defined class can be used to create objects in multiple programs By re-using an object definition, program development time is shortened One goal of object-oriented programming is to support object reuse 7-78

16. Screen Control Programs to date have all displayed output starting at the upper left corner of computer screen or output window. Output is displayed left-to-right, line-by-line. Computer operating systems are designed to allow programs to access any part of the computer screen. Such access is operating system-specific. 7-79

Screen Control Concepts An output screen can be thought of as a grid of 25 rows and 80 columns. Row 0 is at the top of the screen. Column 0 is at the left edge of the screen. The intersection of a row and a column is a cell. It can display a single character. A cell is identified by its row and column number. These are its coordinates. 7-80

Screen Control Windows - Specifics #include <windows.h> to access the operating system from a program Create a handle to reference the output screen: HANDLE screen = GetStdHandle(STD_OUTPUT_HANDLE); Create a COORD structure to hold the coordinates of a cell on the screen: COORD position; 7-81

Screen Control Windows More Specifics Assign coordinates where the output should appear: position.x = 30; // column position.y = 12; // row Set the screen cursor to this cell: SetConsoleCursorPosition(screen, position); Send output to the screen: cout << "Look at me!" << endl; be sure to end with endl, not '\n' or nothing 7-82

Assigment 1. Which of the following shows the correct use of the scope resolution operator in a member function definition? A) InvItem::void setonhand(int units) B) void InvItem::setOnHand(int units) 2. An object s private member variables can be accessed from outside the object by A) public member functions B) any function C) the dot operator D) the scope resolution operator 3. Assuming that soap is an instance of the Inventory class, which of the following is a valid call to the setonhand member function? A) setonhand(20); B) soap::setonhand(20); C) soap.setonhand(20); D) Inventory.setOnHand(20); 1-83

HOMEWORK! 1. True or false: Like any C++ function, a constructor may be overloaded, providing each constructor has a unique parameter list. 2. True or false: A class may have a constructor with no parameter list, and an overloaded constructor whose parameters. 3. True or false: Objects can be passed to functions, but they cannot be returned by functions. 4. True or false: When an object is passed to a function, but the function is not supposed to change it, it should be passed by value. 7-84

HOMEWORK! 5. Briefly describe the purpose of a constructor. 6. Write a structure declaration for a structure named Account that holds the following: data about a savings account. Include a constructor that allows data values to be passed in for all four members. Account number (string) Account balance (double) Interest rate (double) Average monthly balance (double) 7. Write a class declaration for a class named Circle, which has the data member: radius, a double, and the following member functions: setradius and getarea. Write the code for these as inline functions. 7-85