« Back to James's CS61A page. CS61A: Spring 2000

Week 7 Discussion/Lab Notes


Administrivia


Discussion Outline


Object-Oriented Programming (OOP)

Object-oriented programming is a powerful programming metaphor particularly for modeling items in the real world. (OOP can be applied to less tangible, more abstract entities as well, but it's questionable whether OOP is the best programming style to use for these cases.)

In this class we'll be using class-based OOP. This is the model that most OOP languages use, where we define general classes and create particular instances of them. (Another model is prototype-based OOP, which, as far as I know, isn't widely used in practice.)

Read the material in the course reader about object-oriented programming.

Objects have different relationships with other objects.


Object-Oriented Design (OOD)

How should we structure and organize our classes? What kind of relationships should classes have with each other? These are the topics of object-oriented design. Unfortunately there aren't any steadfast rules about this; different situations require different design decisions, and you learn what's good and what's bad mostly from experience and common sense. Some general design principles:

You'll deal with OOD much more in CS61B (Data Structures) and CS169 (Software Engineering).


« Week 6 Week 8 »
« Back to James's CS61A page. CS61A: Spring 2000

Last Modified: Tuesday, 30-Dec-2014 11:58:34 PST