1 / 15

Variables and Inheritance Part 1

Variables and Inheritance Part 1 . Alice. Review: Properties. A class defines properties for its own kind of object. When an object is created (instantiated), it receives its own set of properties . State. Each property stores information about the object. Examples: vehicle

devin
Télécharger la présentation

Variables and Inheritance Part 1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Variables and InheritancePart 1 Alice

  2. Review: Properties • A class defines properties for its own kind of object. • When an object is created (instantiated), it receives its own set of properties.

  3. State • Each property stores information about the object. • Examples: vehicle isShowing • The set of information about the object is called the state of the object.

  4. State Change • Instructions in our program code generally cause a change in a property value -- a state change. • For example, a set instruction can be used to change the color of an object.

  5. Class-level Variables • New variables can be added to the properties list of an object. • The new variable is class-level • The value of the variable can be changed • We say the variable is mutable. • This extends the capability of an object to track state changes.

  6. Example • Game programs often make use of a timer – some mechanism to keep track of the time remaining in the game. • We will construct a timer. • First, add a 3D text object to the world. • Any string of digits could be used. We arbitrarily chose "0.0"

  7. Creating a new variable • Select the timer object and then create a new variable named timeLeft. • The isOn variable is declared to be a Number type. • The value is 0 (the game hasn't begun, as yet).

  8. Start the timer • At the start of the game, the timer's timeLeft variable must be initialized to the amount of time allowed for playing the game. (This example uses seconds, but minutes would work just as well.) • Storyboard for a method to initialize the timeLeft variable: initialize parameter:amountOfTime timeLeft is set to a value specified by amountOfTime

  9. Counting down • In this example, the timer will count down to 0 (no seconds left on the clock). • Storyboard for a countDown method: countDown Do in order While timeLeft is greater than 0 Do in order update the 3D text to show the remaining number of seconds decrease timeLeft by 1 update the 3D text to display 0 seconds Note: The last instruction updates the 3D text display after the While loop ends .

  10. class-level function • To coordinate the game with the timer's countdown, write a function that returns the value of the timeLeft variable.

  11. Demo • Ch10Lec1aTimer • Concepts illustrated in this example • The value in a variable can be used in a conditional expression to control a loop. • The value of timeLeft is compared to 0. • The value in a variable can be changed at runtime. • The value of timeLeft is decreased by 1 each time through the While loop. • A number can be displayed as a text string by calling a built-in conversion function (as a string).

  12. Save out • Save out the timer as a new class. • Rename the object (we used timerDown) • Right-click on the object name and select save object…

  13. Inheritance • If the object (with its new variable) is saved out and given a new name, a new class is created. • This is an example of inheritance. • The new class inherits all the properties and methods (move, turn, roll, etc.) of the original class. • Also,the new class has the newly declared variable and an extended capability to track state changes.

  14. Import • Now you can add an instance of the newly created class to a new world.

  15. Assignment • Read Chapter 10 Section 1, up to page 257.

More Related