User Tools

Site Tools


java:super_operator

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
java:super_operator [2021/03/05 19:13] – external edit 127.0.0.1java:super_operator [2025/03/21 07:05] (current) – [Πρόσβαση στις μεθόδους της γονικής κλάσης] gthanos
Line 94: Line 94:
   int height;   int height;
    
-  public Rectangle(int initWidth, int initHeight) {+  public BasicRectangle(int initWidth, int initHeight) {
     width = initWidth;     width = initWidth;
     height = initHeight;     height = initHeight;
Line 124: Line 124:
   }   }
      
-  public int getPerimeter() { +  public int area() { 
-    return 2*(width+height);+    return width*height;
   }   }
 } }
Line 134: Line 134:
 ==== Πρόσβαση στα πεδία της γονικής κλάσης ==== ==== Πρόσβαση στα πεδία της γονικής κλάσης ====
  
-Επιπλέον, στην κλάση Rectangle, ορίζουμε παραπάνω τη μέθοδο getPerimeter. H μέθοδος μπορεί να γραφεί με τις εξής δύο (2) ισοδύναμες παραλλαγές.+Επιπλέον, στην κλάση Rectangle, ορίσαμε παραπάνω τη μέθοδο area. H μέθοδος μπορεί να γραφεί με τις εξής τρεις (3) ισοδύναμες παραλλαγές.
 <code java>  <code java> 
-  public int getPerimeter() { +  public int area() { 
-    return 2*(this.width+this.height);+    return width * height;
   }   }
 </code> </code>
 <code java>  <code java> 
-  public int getPerimeter() { +  public int area() { 
-    return 2*(super.width+super.height);+    return this.width this.height; 
 +  } 
 +</code> 
 +<code java>  
 +  public int area() { 
 +    return super.width super.height;
   }   }
 </code> </code>
java/super_operator.1614971636.txt.gz · Last modified: 2021/03/05 19:13 by 127.0.0.1