abstract classes type conversion
play

abstract classes, type conversion Nov. 23, 2016 1 RECALL: - PowerPoint PPT Presentation

COMP 250 Lecture 31 abstract classes, type conversion Nov. 23, 2016 1 RECALL: interfaces interface Shape float getArea() float getPerimeter() : implements implements class Rectangle class Circle Rectangle() { } Circle() {


  1. COMP 250 Lecture 31 abstract classes, type conversion Nov. 23, 2016 1

  2. RECALL: interfaces interface Shape float getArea() float getPerimeter() : implements implements class Rectangle class Circle Rectangle() { …} Circle() { …} float getArea () { …. } float getArea () { …. } float getArea () { …. } float getArea () { …. } 2

  3. interfaces classes (tree, parent links only) 3

  4. classes interfaces (tree, parent links only) extends extends implements A subclass can extend one superclass. A class can implement multiple interfaces. An interface can extend multiple interfaces. 4

  5. Example: Circular Circle Sphere Cylinder 5

  6. interface Circular double getRadius() void setRadius(double) double getArea() : implements implements implements class Sphere class Circle class Cylinder double radius double radius  same  double getRadius (){ … } double getRadius () {…} void setRadius (double){…} void setRadius (double){…} double getArea () { … } double getArea (){….} Can we avoid repeating these method definitions? 6

  7. Abstract Class • Like a class, it can have fields and methods with bodies • Like an interface, it can have methods with only signatures. 7

  8. abstract class Circular double radius double getRadius() { return radius; } void setRadius (double r) { radius = r…} abstract double getArea() : extends extends extends class Sphere class Circle class Cylinder Sphere( double radius) { … } Circle( double radius){ … } double length double getArea() { …. } double getArea () { … } Cylinder (double radius, double len ){ …} double getArea (){ … } 8

  9. abstract class Circular { double radius; // field Circular(double radius){ // constructor this.radius = radius; } double getRadius(){ // implemented methods return radius; } void setRadius(double r){ this.radius = r; } abstract double getArea(); // abstract method } 9

  10. class Circle extends Circular{ Circle(double radius){ // constructor super(radius); // superclass field } double getArea(){ double r = this.getRadius(); return Math. PI * r*r; } } 10

  11. class Cylinder extends Circular{ double height; Cylinder(double radius, double h){ // constructor super(radius); this.height = h; } double getArea(){ double r = this.getRadius(); return 2 * Math. PI * radius * height; } } 11

  12. MY BAD Example: Assignment 4 abstract class Shape double getArea() { return 0; } : extends extends extends class Triangle class Square class Circle Triangle(double height, Circle( double radius){ … } Square( double width) { … } double base){ …} double getArea () { … } double getArea() { …} double getArea (){ … } 12

  13. It should have been: interface Shape double getArea() : implements implements implements class Triangle class Square class Circle Triangle(double height, Circle( double radius){ … } Square( double width) { … } double base){ …} double getArea () { … } double getArea() { …} double getArea (){ … } 13

  14. COMP 250 Lecture 31 abstract classes, type conversion Nov. 23, 2016 14

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

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

  17. 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 For narrowing conversions, you get a compiler error if you don’t cast. 17

  18. class Dog wider narrower extends class Beagle Heads up! Although the subclass is narrower, it has more bytes than the superclass. 18

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

  20. Dog myDog = new Beagle(); // Upcasting. Poodle myPoodle = myDog; // Compiler error. // implicit downcast Dog to Poodle not allowed. myDog.show() // Compiler error. // Poodle has show() method, // but Dog does not. 20

  21. Dog myDog = new Beagle(); // Upcasting. Poodle myPoodle = (Poodle) myDog; // allowed by compiler myPoodle.show() // allowed by compiler // Runtime error: Dog object // does not have show() method ((Poodle) myDog).show() // allowed by compiler, but will generate runtime // error if actual object doesn’t have a show method. 21

  22. How to avoid such runtime errors? if (myDog instanceOf Poodle){ ( (Poodle) myDog ).show(); } if (myPoodle instanceOf Poodle){ myPoodle.show(); } 22

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