Advertisement
sergAccount

Untitled

Jul 17th, 2021
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.80 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.ex20;
  7.  
  8. public class Main {
  9.    
  10.     public static void main(String[] args) {
  11.         // определяем переменную типа Shape
  12.         Shape s;
  13.         // s1 - типа Shape
  14.         Shape s1 = new Rectangle();
  15.         s1.draw();// какой метод draw будет вызваться ???
  16.         //
  17.         Shape s2 = new Square();
  18.         s2.draw(); // какой метод draw будет вызваться ???
  19.        
  20.         Rectangle r1 = new Square();
  21.         r1.draw(); // какой метод draw будет вызваться ???
  22.     }    
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement