Examples of Savec


Examples of com.virtage.edu.javaz.k06objekty.rozhrani.Savec

  public static void main(String[] args) {
    // Vyměníme kočku za psa
    Kocka micka = new Kocka("Micka");
    Pes alik = new Pes("Alik");
   
    Savec kockopes = vymen(micka, alik);
   
    // vypíše "Pes jménem Micka"
    System.out.println("Pes jménem " + kockopes.getJmeno())
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.