Presentation is loading. Please wait.

Presentation is loading. Please wait.

P Chapter 2 introduces Object Oriented Programming. p OOP is a relatively new approach to programming which supports the creation of new data types and.

Similar presentations


Presentation on theme: "P Chapter 2 introduces Object Oriented Programming. p OOP is a relatively new approach to programming which supports the creation of new data types and."— Presentation transcript:

1 p Chapter 2 introduces Object Oriented Programming. p OOP is a relatively new approach to programming which supports the creation of new data types and operations to manipulate those types. p This presentation introduces OOP. Object Oriented Programming Data Structures and Other Objects Using Java

2 What is this Object ? p There is no real answer to the question, but we’ll call it a “thinking cap”. p The plan is to describe a thinking cap by telling you what actions can be done to it.

3 Using the Object’s Slots p You may put a piece of paper in each of the two slots (green and red), with a sentence written on each. p You may push the green button and the thinking cap will speak the sentence from the green slot’s paper. p And same for the red button.

4 Example

5 That test was a breeze !

6 Example I should study harder !

7 Thinking Cap Implementation p We can implement the thinking cap using a data type called a class. public class ThinkingCap {... }

8 Thinking Cap Implementation p The class will have two components called greenWords and redWords. These compnents are strings which hold the information that is placed in the two slots. p Using a class permits two features... public class ThinkingCap { String greenWords; String redWords;... }

9 Thinking Cap Implementation ŒThe two components will be private instance variables. This ensures that nobody can directly access this information. The only access is through methods that we provide for the class. public class ThinkingCap { private char greenWords; private char redWords;... }

10 Thinking Cap Implementation In a class, the methods which manipulate the class are also listed. class ThinkingCap { private char greenWords; private char redWords;... } Implementations of the thinking cap methods go here.

11 Thinking Cap Implementation public class ThinkingCap { private char greenWords; private char redWords; public void slots(String newGreen, String newRed)... public void pushGreen( )... public void pushRed( )... } Our thinking cap has at least three methods:

12 Thinking Cap Implementation package edu.colorado.simulations; public class ThinkingCap { private char greenWords; private char redWords; public void slots(String newGreen, String newRed)... public void pushGreen( )... public void pushRed( )... } The code for a new class is generally put in a Java package, as shown here: This means that ThinkingCap.java and ThinkingCap.class files will be in a subdirectory edu/colorado/simulations

13 Using the Thinking Cap p A program that wants to use the thinking cap can import the ThinkingCap class. import edu.colorado.simulations.ThinkingCap;...

14 Using the Thinking Cap p Just for fun, the example program will declare two ThinkingCap variables named student and fan. import edu.colorado.simulations.ThinkingCap; public class Example { public static void main( ) { ThinkingCap student; ThinkingCap fan;

15 Using the Thinking Cap p The variables are examples of reference variables, which means that they have the capability of refering to ThinkingCap objects that we create with the new operator. import edu.colorado.simulations.ThinkingCap ; public class Example { public static void main( ) { ThinkingCap student; ThinkingCap fan; student = new ThinkingCap( ); fan = new ThinkingCap( );

16 Using the Thinking Cap p Once the ThinkingCaps are created, we can activate methods such as slot for the student thinking cap. import edu.colorado.simulations.ThinkingCap ; public class Example { public static void main( ) { ThinkingCap student; ThinkingCap fan; student = new ThinkingCap( ); fan = new ThinkingCap( ); student. slots( "Hello", "Bye");

17 Using the Thinking Cap p Once the ThinkingCaps are created, we can activate methods such as slot for the student thinking cap. import edu.colorado.simulations.ThinkingCap; public class Example { public static void main(String[ ] args) { ThinkingCap student; ThinkingCap fan; student = new ThinkingCap( ); fan = new ThinkingCap( ); student. slots( "Hello", "Bye");

18 Using the Thinking Cap ŒThe method activation consists of four parts, starting with the variable name. student. slots( "Hello", "Bye"); Name of the variable

19 Using the Thinking Cap The variable name is followed by a period. student. slots( "Hello", "Bye"); A Period

20 Using the Thinking Cap ŽAfter the period is the name of the method that you are activating. student. slots( "Hello", "Bye"); Name of the method

21 Using the Thinking Cap Finally, the arguments for the method. In this example the first argument (newGreen) is "Hello" and the second argument (newRed) is "Bye". student. slots( "Hello", "Bye"); Arguments

22 A Quiz How would you activate student's pushGreen method ? What would be the output of student's pushGreen method at this point in the program ? public static void main(String[ ] args) { ThinkingCap student; ThinkingCap fan; student = new ThinkingCap( ); fan = new ThinkingCap( ); student. slots( "Hello", "Bye");

23 A Quiz Notice that the pushGreen method has no arguments. At this point, activating student.pushGreen will print the string Hello. public static void main(String[ ] args) { ThinkingCap student; ThinkingCap fan; student = new ThinkingCap( ); fan = new ThinkingCap( ); student. slots( "Hello", "Bye"); student.pushGreen( );

24 A Quiz Trace through this program, and tell me the complete output. public static void main(String[ ] args) { ThinkingCap student; ThinkingCap fan; student = new ThinkingCap( ); fan = new ThinkingCap( ); student. slots( "Hello", "Bye"); fan. slots( "Go Cougars!", "Boo!"); student. pushGreen( ); fan. pushGreen( ); student. pushRed( );...

25 A Quiz Hello Go Cougars! Bye public static void main(String[ ] args) { ThinkingCap student; ThinkingCap fan; student = new ThinkingCap( ); fan = new ThinkingCap( ); student. slots( "Hello", "Bye"); fan. slots( "Go Cougars!", "Boo!"); student. pushGreen( ); fan. pushGreen( ); student. pushRed( );...

26 What you know about Objects ü Class = Data + Methods. ü You know how to write a new class type, and place the new class in a package. ü You know how to import the class into a program that uses class type. ü You know how to activate methods. û But you still need to learn how to write the implementations of a class’s methods.

27 Thinking Cap Implementation public class ThinkingCap { private String greenWords; private String redWords; public void slots(String newGreen, String newRed)... public void pushGreen( )... public void pushRed( )... } We will look at the body of slots, which must copy its two arguments to the two private instance variables.

28 Thinking Cap Implementation public void slots(String newGreen, String newRed) { greenWords = newGreen; redWords = newRed; } The method’s implementation occurs after the parameter list There is one feature about a method’s implementation...

29 Thinking Cap Implementation public void slots(String newGreen, String newRed) { greenWords = newGreen; redWords = newRed; } Within the body of the method, the class’s instance variables and other methods may all be accessed.

30 Thinking Cap Implementation ? Within the body of the method, the class’s instance variables and other methods may all be accessed. public void slots(String newGreen, String newRed) { greenWords = newGreen; redWords = newRed; } But, whose instance variables are these? Are they student.greenWords student.redWords fan.greenWords fan.redWords

31 Thinking Cap Implementation Within the body of the method, the class’s instance variables and other methods may all be accessed. public void slots(String newGreen, String newRed) { greenWords = newGreen; redWords = newRed; } If we activate student.slots: student.greenWords student.redWords

32 Thinking Cap Implementation public void slots(String newGreen, String newRed) { greenWords = newGreen; redWords = newRed; } If we activate fan.slots: fan.greenWords fan.redWords Within the body of the method, the class’s instance variables and other methods may all be accessed.

33 Thinking Cap Implementation public void pushGreen( ) { System.out.println(greenWords); } Here is the implementation of the pushGreen method, which prints the green Words:

34 Thinking Cap Implementation Here is the implementation of the pushGreen method, which prints the green Words: Notice how this method implementation uses the greenWords instance variable of the object. public void pushGreen( ) { System.out.println(greenWords); }

35 A Common Pattern p Often, one or more methods will place data in the instance variables... public class ThinkingCap { private String greenWords; private String redWords;... } p...so that other methods may use that data. slots pushGreen & pushRed

36 p Classes have instance variables and methods. An object is a variable where the data type is a class. p You should know how to declare a new class type, how to implement its methods, how to use the class type. p Frequently, the methods of an class type place information in the instance variables, or use information that's already in the instance variables. p In the future we will see more features of OOP. Summary

37 T HE E ND Presentation copyright 1999, Addison Wesley Longman For use with Data Structures and Other Objects Using Java by Michael Main Some artwork in the presentation is used with permission from Presentation Task Force (copyright New Vision Technologies Inc.) and Corel Gallery Clipart Catalog (copyright Corel Corporation, 3G Graphics Inc., Archive Arts, Cartesia Software, Image Club Graphics Inc., One Mile Up Inc., TechPool Studios, Totem Graphics Inc.). Students and instructors who use Data Structures and Other Objects Using Java are welcome to use this presentation however they see fit, so long as this copyright notice remains intact.


Download ppt "P Chapter 2 introduces Object Oriented Programming. p OOP is a relatively new approach to programming which supports the creation of new data types and."

Similar presentations


Ads by Google