1 / 43

CSE115: Introduction to Computer Science I

CSE115: Introduction to Computer Science I. Dr. Carl Alphonce 343 Davis Hall 645-4739 alphonce@buffalo.edu. Agenda. Announcements Cell phones / laptops off & away Name signs out FAIR WARNING: First exam on Wednesday, Feb 15 covers material up to Friday, Feb 10

rhona
Download Presentation

CSE115: Introduction to Computer Science I

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. CSE115: Introduction to Computer Science I Dr. Carl Alphonce 343 Davis Hall 645-4739 alphonce@buffalo.edu

  2. Agenda • Announcements • Cell phones / laptops off & away • Name signs out • FAIR WARNING: First exam on Wednesday, Feb 15 • covers material up to Friday, Feb 10 • Mon Feb 13 is review class (come prepared with questions!) • Last time • expressions, references, variables, terminology • Object diagrams • Today • Object diagrams (again) • Class definitions (and more terminology)

  3. A bit of review example1.Terrarium t; example1.Caterpillar c; t = new example1.Terrarium(); c = new example1.Caterpillar(); t.add(c); c.start();

  4. The variable declaration • Consists minimally of: type & name • What is a type? A class is a type. • Remember: objects are instantiated from classes. • Examples of variable declarations: example1.Terrarium t; example1.Caterpillar c;

  5. Syntax (a little more formal) • variable declarations appear in many places in Java programs • a variable declaration in Java • ALWAYS has: type identifer • In our example • type identifier ; • semicolon is a terminator

  6. assignment statement • variable = expression ; • ‘=’ is the ASSIGNMENT OPERATOR • Example: t = new example1.Terrarium();

  7. A bit of review What happens in memory? example1.Terrarium t; example1.Caterpillar c; t = new example1.Terrarium(); c = new example1.Caterpillar(); t.add(c); c.start();

  8. Something like this!

  9. Object diagram(corresponding to memory diagram on previous slide) t Simpler! Boxes denote variables c example1.Terrarium Arrows denote references example1.Caterpillar This diagram is an abstraction of the one on the previous slide: it ignores irrelevant details, such as the addresses and sizes of the two objects being shown. An abstraction is thus a simplification. Ovals denote objects

  10. What is a class definition? • A class definition is a description of the properties and behaviors that instances of the class will have. • Recall that we said a running OO program is a system of interacting objects. • Possible relationships between objects are determined by relationships between classes. (Important – we’ll return to this!)

  11. Where do objects come from? • Objects are instances of classes • We instantiate classes: • e.g. new example1.Terrarium() • There are three parts to this expression: • new • example1.Terrarium • ()

  12. ‘new’ is a “reserved word” in Java. This means that the word ‘new’ has a special meaning in the Java language. example1.Terrarium() is a constructor call. A constructor initializes the state of a newly created object. new example1.Terrarium() ‘new’ is the name of an operator whose job it is to create an instance of a given class The parentheses delimit the argument list of the constructor call. In this case there are no arguments being passed along to the constructor, so the argument list is empty. example1.Terrarium is the name of the class we are instantiating. It is a compound name, consisting of a package name (example1) and the name of the class’ constructor (Terrarium), separated by a dot ‘.’ A constructor initializes the state of a newly created object.

  13. Object creation(revisited & refined) • new determines size of object • reserves a block of memory for object • calls constructor to initialize the object • we will consider a constructor to be a special case of a method • returns the starting address of block of memory (a reference to the object)

  14. Packages – 1 • A package is an organizational mechanism • related classes are grouped together • allows class names to be re-used in different packages • reduces chance of naming conflicts

  15. Packages – 2 • One analogy: • package::class • area code::phone number • A class’ fully qualified name consists of its package name and its (unqualified) class name: • example1.Terrarium is a fully qualified class name • Terrarium is an unqualified class name

  16. Folder structure on disk • each package corresponds to a folder on the disk • packages can be nested within each other • corresponds to nested folder on disk • examples: • java.rmi.registry • javax.swing.text.html.parser • com.sun.accessibility.internal.resources.accessibility

  17. Defining a class • Let us define a class which, when instantiated, creates a Terrarium, adds a Caterpillar, and makes the Caterpillar move. • This is similar to what you will do for lab 2. • We start with a minimal class definition.

  18. Our first class definition! Here’s a minimal class definition. We will label and discuss each part of it: package lab2; public class EcoSystem { public EcoSystem() { } }

  19. Syntax package lab2; public class EcoSystem { public EcoSystem() { } } Package declaration is shown in green:

  20. Syntax package lab2; public class EcoSystem { public EcoSystem() { } } package is a reserved word:

  21. Syntax package lab2; public class EcoSystem { public EcoSystem() { } } lab2 is the name of the package – you choose this (we’ll cover naming rules and conventions later):

  22. Syntax package lab2; public class EcoSystem { public EcoSystem() { } } A semicolon ‘;’marks the end of the declaration:

  23. Syntax package lab2; public class EcoSystem { public EcoSystem() { } } The class definition is shown in green:

  24. Syntax package lab2; public class EcoSystem{ public EcoSystem() { } } The class definition consists of a header . . .

  25. Syntax package lab2; public class EcoSystem { public EcoSystem() { } } . . . and a body:

  26. Syntax package lab2; public class EcoSystem{ public EcoSystem() { } } The class header consists of an access control modifier . . .

  27. Syntax package lab2; public classEcoSystem{ public EcoSystem() { } } . . . the reserved word class . . .

  28. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } . . . and a class name:

  29. Syntax package lab2; publicclass EcoSystem { public EcoSystem() { } } The class body begins with an opening brace ‘{’ . . .

  30. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } . . . and ends with the matching closing brace ‘}’ :

  31. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } In this example, the body consists of a single constructor definition:

  32. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } The constructor definitions consists of a header . . .

  33. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } . . . and a body:

  34. Syntax package lab2; publicclass EcoSystem{ publicEcoSystem() { } } The constructor header consists of an access control modifier . . .

  35. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } . . . the constructor name (which is the same as the class name) . . .

  36. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } . . . and a parameter list:

  37. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } The constructor body begins with an opening brace ‘{’ . . .

  38. Syntax package lab2; publicclass EcoSystem{ public EcoSystem() { } } . . . and ends with the matching closing brace ‘}’ :

  39. Let’s return to:defining a class • We set out to define a class which, when instantiated, creates a Terrarium, adds a Caterpillar, and makes the Caterpillar move. • We started with a minimal class definition, let’s move beyond that now.

  40. Variable declaration A variable can be declared inside the body of a method – it is called a local variable. package lab2; publicclass EcoSystem{ public EcoSystem() { example1.Terrarium t; } }

  41. Assignment statement Any statement must be inside the body of a method: package lab2; publicclass EcoSystem{ public EcoSystem() { example1.Terrarium t; t = new example1.Terrarium(); } }

  42. The complete solution package lab2; publicclass EcoSystem{ public EcoSystem() { example1.Terrarium t; t = new example1.Terrarium(); example1.Caterpillar c; c = new example1.Caterpillar(); t.add(c); c.start(); } }

  43. Every time class is instantiated, the constructor is executed. • This creates a new Terrarium with a new moving Caterpillar.

More Related