[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[On Teaching and Learning]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[SamR]
[Java 1.5 API]
[Espresso]
[TAO of Java]
[CS152 2004F]
Back to Object Basics (1). On to Object Basics Lab.
Held: Wednesday, February 9, 2005
Summary: Today we continue our basic study of classes, focusing on the design of a particular class.
Related Pages:
Overview:
protection ClassName(parameters)
{
body
} // ClassName(parameters)
name, that we want to initialize with a string whenever we create an object, we might write the following:
public NamedThing(String _name)
{
this.name = _name;
} // NamedThing(String)
int counter;
public Counter()
{
this.counter = 0;
} // Counter()
main method. You can
think of the main method as a combination of the script
and directory of a play. This method creates the objects that form
the initial actorsof the play that is your program. It then tells them what to do.
toString.
equals, which you use to determine whether one object is "naturally" the same as another object.
equals method is
public boolean equals(Object other)
Vec2D ovec = (Vec2D) other;
instanceof operation
if (other instanceof Vec2D) {
Vec2D ovec = (Vec2D) other;
...
}
else {
return false;
}
compareTo method is a more general form of comparison.
public boolean compareTo(Object other)
compareTo method, you should indicate that your mold class implements Comparable.
clone method makes another copy of the current object.
clone method, you should indicate that your mold class implements Cloneable.
clone is
public Object clone()
hashCode method returns some integer that represents this object.
hashCode method in the second half of the semester, but I'd like you to start using it now.
Back to Object Basics (1). On to Object Basics Lab.
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[On Teaching and Learning]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[SamR]
[Java 1.5 API]
[Espresso]
[TAO of Java]
[CS152 2004F]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Wed May 11 10:55:49 2005.
The source to the document was last modified on Mon Jan 24 10:17:06 2005.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS152/2005S/Outlines/outline.11.html.
You may wish to
validate this document's HTML
;
;
Check with Bobby