Presentation is loading. Please wait.

Presentation is loading. Please wait.

Questions? Suggestions?. References References Revisited What happens when we say: int x; double y; char c; ???

Similar presentations


Presentation on theme: "Questions? Suggestions?. References References Revisited What happens when we say: int x; double y; char c; ???"— Presentation transcript:

1 Questions? Suggestions?

2 References

3 References Revisited What happens when we say: int x; double y; char c; ???

4 We create variables xycxyc Variable: Symbol plus a value

5 Assume that we have class Box class LLNode as well as the usual suspects: class String, etc.

6 What happens when we say Box b; LLNode head; String s;

7 We create variables b head s Reference variables hold the location of objects. If they aren't referencing an object what is their value? Reference variables hold the location of objects. If they aren't referencing an object what is their value? Java keeps track of what type of object each reference can "point" to. Java keeps track of what type of object each reference can "point" to. Box LLNode String

8 Common Errors! Box b = new Box(1, 2, 3);. Box b = new Box(4, 5, 6);.

9 Should be: Box b = new Box(1, 2, 3);. b = new Box(4, 5, 6);.

10 Common Errors! Box b = new Box(1, 2, 3); b = anotherBox;

11 Should be: Box b; b = anotherBox;

12 Common Errors! class Whatever { Box b; // Constructor public Whatever() { Box b = new Box(1, 2, 3);

13 Should be: class Whatever { Box b; // Constructor public Whatever() { b = new Box(1, 2, 3);

14 Understanding References Key to understanding –Arrays of Objects –Testing for Equality of Objects –Passing Objects to Methods –Assignment vs. Clone –etc. For example...

15 Now, let’s consider WHY... Understanding Equality The key to understanding equality comes from knowing how Java handles references and primitives. First, here’s the rule: When comparing primitives, use ==, thus: if ( iCount == iMaximum ) // etc. When comparing objects, use.equals(), thus: if ( box1.equals(box2) ) // etc.

16 Equality with Primitives: int x; int y; x = 11; y = 3; System.out.println(x == 11);// prints true System.out.println(y = = 3);// prints true System.out.println(x = = y);// prints false x = y; System.out.println(x = = 3);// prints true System.out.println(y = = 3);// prints true System.out.println(x == y);// prints true System.out.println(x > y);// prints false Testing Equality: Primitives 11 x: 3 y: 3 x: 3 y:

17 1. Are the references equal? Test with == In other words, are both references pointing to exactly the same object? Considered to be the most stringent test for equality Testing Equality: Objects

18 2. Are the objects themselves equal? The answer depends on your definition of equality! Create an equals() method which compares the internal state of the object with another object passed in as a reference. You need to create this method for every class where you will need to compare objects for equality Testing Equality: Objects

19 Example class Rectangle { int len, wid; String name; // Constructor and basic get/set methods not shown public boolean equals(Object o) { boolean retVal = false; if(o instanceOf Rectangle) { Rectangle r = (Rectangle)o; if(r.getLen() == len && r.getWid() == wid) retVal = true; } return retVal; }

20 Example public static void main(String args[]) { Rectangle r1 = new Rectangle(3,4,"Bob"); Rectangle r2 = new Rectangle(3,4,"Ted"); Rectangle r3 = new Rectangle(8,7,"Bob"); Rectangle r4 = r1; String s = "Goofy"; System.out.println(r1.equals(r2)); System.out.println(r1.equals(r3)); System.out.println(r1.equals(r4)); System.out.println(r1.equals(s)); } } // Rectangle

21 Recall the LLNode public boolean equals(Object o) { boolean retVal = false; if(o instanceOf LLNode) { retVal=getData().equals(((LLNode)o).getData()); } return retval; } Holy OO Gobbledy-Gook Batman!!!! data next data next ??

22 The LLNode public static void main(String args[]) { LLNode n4 = new LLNode("delta", null); LLNode n3 = new LLNode("gamma", n4); LLNode n2 = new LLNode("beta", n3); LLNode n1 = new LLNode("alpha", n2); LLNode tester = new Node("beta", null); System.out.println(n1.equals(tester)); System.out.println(n2.equals(tester)); System.out.println(n3.equals(tester)); System.out.println(n4.equals(tester)); }

23 Note! The.equals() method in class Object is simply ==

24 Scope

25 Scope Local variables (declared as a part of method): Can be seen only from within their method. Outside of their method, their identifiers have no meaning. Instance and Class variables (declared as part of a class, but not within a particular method): Can be seen from anywhere in the instance. This means they can be seen from within methods defined within the class without passing them to the method as parameters. May or may not be visible beyond (soon). Within a method, local variable identifiers take precedence over instance variable IDers

26 What we want: class Person { String strName;... public void setName (String strName) { strName = strName; } // of setName Inside the method, the String strName refers to the String in the method signature. This creates a problem: which strName is which? Preventing Identifier Ambiguity WRONG!

27 What we get: class Person { String strName;... public void setName (String strName) { strName = strName; } // of setName Inside the method, the String strName refers to the String in the method signature. This creates a problem: which strName is which? Preventing Identifier Ambiguity WRONG!

28 Solutions: Rename the formal parameter: public void setName (String strNewStringName) { strName = strNewStringName; } // of setName Use the keyword this to refer to “current object” public void setName (String strName) { this.strName = strName; } // of setName Preventing Identifier Ambiguity Preferred with Javadocs

29 Shadowing

30 Shadowing Refers to "hiding" something that still exists Simple case today Will come back to this topic during discussion on inheritance

31 Shadowing class Widget { name public String name; public void someMethod(int i) { name String name; /* Shadows instance variable */ name name = "Bob"; this.name this.name = "Wally"; /* Accessing the shadowed variable! */

32 Chaining

33 Some Constructors class Rectangle { private int length, width; private String name; public Rectangle () { setLength(0); setWidth(0); setName("Unnamed"); } // constructor public Rectangle (int l, int w) { setLength(l); setWidth(w); setName("Unnamed"); } // constructor public Rectangle (int l, int w, String n){ setLength(l); setWidth(w); setname(n); } // constructor

34 Constructor "Chaining" class Rectangle { private int length, width; private String name; public Rectangle () { this(0,0,"Unnamed"); } // constructor public Rectangle (int l, int w) { this(l, w,"Unnamed"); } // constructor public Rectangle (int l, int w, String n){ setLength(l); setWidth(w); setname(n); } // constructor

35 Add a count? class Rectangle { private int length, width; private String name; private static count = 0; public Rectangle () { setLength(0); setWidth(0); setName("Unnamed"); count++; } // constructor public Rectangle (int l, int w) { setLength(l); setWidth(w); setName("Unnamed"); count++; } // constructor public Rectangle (int l, int w, String n){ setLength(l); setWidth(w); setname(n); count++; } // constructor

36 Add a count, simpler with "Chaining" class Rectangle { private int length, width; private String name; private static int count = 0; public Rectangle () { this(0,0,"Unnamed"); } // constructor public Rectangle (int l, int w) { this(l, w,"Unnamed"); } // constructor public Rectangle (int l, int w, String n){ setLength(l); setWidth(w); setname(n); count++; } // constructor

37 Arrays

38 Arrays An array may be declared to be: – an array of primitives, or – an array of objects (actually references!!!). The Array itself is an Object, even if the array contains primitives. –(Array identifier references an object). If an array of objects, then: – the array identifier is a reference to the array object – each array element is a reference to an object of the class specified as elements Instantiating the array object does not instantiate the various element objects to which it refers. Element objects must be explicitly instantiated and initialized.

39 Example: Imagine a Flatware object which keeps track of: knives, forks and spoons. class Flatware { int knives = 0; int forks = 0; int spoons = 0; public Flatware(int knives, int forks, int spoons) { setKnives(knives); setForks(forks); setSpoons(spoons); } // of constructor /* We assume accessors, modifiers--getKnives(), setKnives(), etc. -- are implemented here */ } // of Flatware Arrays

40 Then, the code segment: Flatware fw1 = new Flatware(10, 20, 30); Flatware fw2; produces: knives = 10 forks = 20 spoons = 30 fw1 fw2 Arrays

41 and the code segment: Flatware[ ] flatwareArray = new Flatware[5]; produces: which could then be initialized via: int i; for ( i = 0; i < flatwareArray.length; i++) { flatwareArray[i] = new Flatware(10, 20, 30); } // of for loop initialization flatwareArray Arrays

42 giving: flatwareArray knives = 10 forks = 20 spoons = 30 fw1 fw2 7 objects in total 6 Flatware objects Arrays knives = 10 forks = 20 spoons = 30 knives = 10 forks = 20 spoons = 30 knives = 10 forks = 20 spoons = 30 knives = 10 forks = 20 spoons = 30 knives = 10 forks = 20 spoons = 30

43 but the code segment: int i; for ( i = 0; i < flatwareArray.length; i++) { flatwareArray[i] = fw1; } // of for loop initialization produces: flatwareArray fw1 1 Flatware object... 2 objects in total Arrays knives = 10 forks = 20 spoons = 30

44 Review: Array Creation Declaration int myInts[]; int[] myInts; Instantiation myInts = new int[10]; Declaration and instantiation: int[] myInts = new int[10]; Access to individual element myInts[3] = 9; x = myInts[4]; Static initialization int[] myInts = {1,2,5,6,7,4};

45 Multi-Dimensional Arrays int[][] myTwoDimArray; myTwoDimArray = new int[10][5]; Quiz Yourself! Valid? String[][] s; s = new String[10][]; Valid? s = new String[][10]; //YES! // NO!

46 String s[][] = {{"Static", "multidimensional", "initialization", "of"}, {"arrays", "requires", "the", "use"}, {"of", "nested", "curlies"} }; Creates: Static multidimensional initialization: Static arrays of multidimensional requires nested Initialization the curlies of use (null)

47 Summary of Arrays Arrays All arrays are objects (you have to declare, instantiate, and initialize) Arrays are either arrays of primitive elements (e.g. int) or arrays of objects (really references to objects) Arrays are statically sized: you can’t change length after declaration; arrays know their own length –Use Array.length in for loops to avoid “off-by-one” errors 2D arrays are arrays of arrays

48 Questions?

49


Download ppt "Questions? Suggestions?. References References Revisited What happens when we say: int x; double y; char c; ???"

Similar presentations


Ads by Google