polymorphism intro only
play

polymorphism (intro only) Class class Nov. 24, 2017 1 Primitive - PowerPoint PPT Presentation

COMP 250 Lecture 33 type conversion polymorphism (intro only) Class class Nov. 24, 2017 1 Primitive Type Conversion double In COMP 273, you will non-integers learn details of how float number representations long are related to each


  1. COMP 250 Lecture 33 type conversion polymorphism (intro only) Class class Nov. 24, 2017 1

  2. Primitive Type Conversion double In COMP 273, you will non-integers learn details of how float number representations long are related to each other. int integers But you should have some short intuitive ideas…. char byte boolean https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html 2

  3. Primitive Type Conversion number of bytes double 8 float 4 long 8 int 4 wider narrower short 2 char 2 Here, wider usually (but not byte 1 always) means boolean 1 more bytes. 3

  4. Examples int i = 3; double d = 4.2; d = i ; // widening 4

  5. Examples int i = 3; double d = 4.2; d = i ; // widening d = 5.3 * i; // widening (by "promotion") i = (int) d; // narrowing (by casting) float f = (float) d; // narrowing (by casting) For primitive types, both widening and narrowing change the bit representation. (See COMP 273.) For narrowing conversions, you get a compiler error if you don’t cast . 5

  6. Examples int i = 3; double d = 4.2; d = i ; // widening d = 5.3 * i; // widening (by "promotion") i = (int) d; // narrowing (by casting) float f = (float) d; // narrowing (by casting) char c = 'g'; int index = c; // widening c = (char) index; // narrowing 6

  7. class Dog wider narrower reference reference extends type type class Beagle Although a subclass is narrower, it has more fields and methods than the superclass (in that it inherits all fields and methods from superclass). 7

  8. class Dog String serialNumber Person owner void bark() : extends extends extends class Poodle class Beagle class Doberman void show() void hunt () void fight () : : : 8

  9. Dog myDog = new Beagle(); // upcast, widening This is similar to: double myDouble = 3; // from int to double. 9

  10. Dog myDog = new Beagle(); // Upcast, widen. Poodle myPoodle = myDog; myDog.show() 10

  11. Dog myDog = new Beagle(); // Upcast, widen. Poodle myPoodle = myDog; // Compiler error. // Implicit downcast Dog to Poodle is not allowed. myDog.show() // Compiler error. // Poodle has show() method, // but Dog does not. 11

  12. Dog myDog = new Beagle(); // Upcasting. Poodle myPoodle = (Poodle) myDog; // Downcast // Narrowing myPoodle.show() ((Poodle) myDog).show() 12

  13. Dog myDog = new Beagle(); // Upcasting. Poodle myPoodle = (Poodle) myDog; // allowed by compiler myPoodle.show() // allowed by compiler // but runtime error: Dog object // does not have show() method ((Poodle) myDog).show() // allowed by compiler, but runtime error for same reason 13

  14. Most of examples above concerned compile time issues. We next examine runtime issues.

  15. COMP 250 Lecture 33 type conversion polymorphism (intro only) Class class Nov. 24, 2017 15

  16. Recall example from lecture 30 Dog myDog = new Beagle(); class Dog String serialNumber myDog.bark(); Person owner void bark()  ?????? (which bark?) {print “woof”} : extends extends class Beagle class Doberman void hunt () void fight () void bark() void bark() {print “ aowwwuuu ”} {print “ Arh! Arh! Arh !”}

  17. Recall example from lecture 30 Dog myDog = new Beagle(); class Dog String serialNumber myDog.bark(); Person owner void bark()  “ aowwwuuu ” {print “woof”} : extends extends class Beagle class Doberman void hunt () void fight () void bark() void bark() {print “ aowwwuuu ”} {print “ Arh! Arh! Arh !”}

  18. Polymorphism “poly” = multiple “morph” = form We have seen the idea already: The object type (run time) can be the same or narrower than the declared type (compile time). More general discussion about polymorphism in higher level courses e.g. COMP 302.

  19. Polymorphism (the following is an important idea, not a formal definition) Compile time: Suppose a reference variable has a declared type: C varC ; // C is a class A varA ; // A is an abstract class I varI ; // I is an interface Runtime: varC can reference any object of class C or any object of a class that extends C. varA can reference any object whose class extends abstract class A. varI can reference any object whose class implements interface I.

  20. (See Exercises for boolean b; Object obj; more examples.) : if ( b ) obj = new Cat(); else obj = new Dog(); : System.out.print( obj ); // Which toString() method that gets called // depends on the object referenced by obj.

  21. How does (runtime) polymorphism work? To answer this question, I first need to explain how classes are represented in a running program.

  22. COMP 250 Lecture 33 type conversion polymorphism (intro only) Class class Nov. 24, 2017 22

  23. Java code ( .java text file) compiler .class file

  24. Java .class file (“byte code”) It has a specific format for information such as: • the class name • fields (names, types) • methods (signature, return type, instructions) • superclass • …. https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html

  25. Example Dog.java text file compiler runtime Dog.class What is this ? The class is “loaded” class file into the JVM

  26. Dog.java text file compiler Runtime Dog Dog.class “class descriptor” The class is “loaded” class file into the JVM.

  27. The term “class descriptor” is not standard. So don’t look it up. It is an object that contains all the information about a class. If it is an object, then what class is it an instance of ? Beagle Dog class descriptor class descriptor String LinkedList class descriptor class descriptor

  28. A “class descriptor” is an instance of the Class class. It has many methods: class Class Class getSuperClass() Method[ ] getMethods( ) Field[ ] getFields( ) String getName( ) :

  29. A Dog object is an instance of the Dog class. A String object is an instance of the String class. An Object object is an instance of the Object class. A Class object (“class descriptor” object ) is an instance of the Class class.

  30. This figure shows objects Each class descriptor is an in a running Java program. instance of the Class class. Dog Beagle Beagle object class descriptor object String Dog class descriptor Beagle object Doberman object class descriptor LinkedList Doberman Doberman class descriptor object class descriptor other objects

  31. This figure shows classes in the Java class hierarchy. class Object boolean equals( Object ) class Animal int hashCode( ) extends : (automatic) String toString( ) Object clone( ) extends Class getClass() class Dog extends : class Class extends Class getSuperClass() Method[ ] getMethods( ) class Beagle Field[ ] getFields( ) : String getName( ) :

  32. This figure shows objects All classes inherit the Object.getClass() in a running Java program. method which returns the class descriptor for that object. Dog getClass() Dog object Beagle class descriptor object getClass() Beagle Beagle String Doberman object object class descriptor class descriptor getClass() Doberman Doberman object LinkedList class descriptor class descriptor

  33. All classes inherit the Object.getClass() This figure shows objects method, which returns the class in a running Java program. descriptor for that object. Object getClass() class descriptor getClass() Dog Class Dog object Beagle class descriptor class descriptor object getClass() Beagle Beagle String Doberman object getClass() object class descriptor class descriptor getClass() Doberman Doberman object LinkedList class descriptor class descriptor

  34. This figure shows classes class Object in the Java class hierarchy. boolean equals( Object ) int hashCode( ) extends String toString( ) class Animal (automatic) Object clone( ) : Class getClass() extends extends class Class class Dog : Class getSuperClass() Method[ ] getMethods( ) Field[ ] getFields( ) extends String getName( ) : class Beagle :

  35. This figure shows objects in a running Java program. getSuperClass() Object class descriptor Class Dog getSuperClass() object Beagle class descriptor object Dog Beagle class descriptor Doberman object getSuperClass() object getSuperClass() Doberman object Beagle Doberman class descriptor class descriptor The getSuperClass() method cannot be invoked by the objects above. Why not?

  36. This figure shows objects in a running Java program. getSuperClass() Object class descriptor Class Dog getClass() object getSuperClass() Beagle class descriptor object Dog Beagle class descriptor Doberman object object getSuperClass() getClass() Doberman object Beagle Doberman class descriptor class descriptor getClass()

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend