Java Basics-Factory mode

Source: Internet
Author: User
Interface fruit{//defines a fruit interface public void eat ();//Eat Fruit}class Apple implements fruit{public void Eat () {System.out.println ("* * Eat apples. ") ;}}; Class Orange implements Fruit{public void Eat () {System.out.println ("* * * eat oranges. ") ;}}; Class factory{//defines the factory class public static Fruit getinstance (String className) {Fruit F = null, if ("Apple". Equals (ClassName)) {// Determine if you want the subclass F = new Apple () of Apple;} if ("Orange". Equals (ClassName)) {//Determine if you want an orange subclass F = new Orange ();} return f;}; public class Interfacecasedemo05{public static void Main (String args[]) {Fruit f = factory.getinstance (Args[0]);//Instantiate interface I F (f!=null) {//To determine if the instance is F.eat ();}};

  

Java Basics-Factory mode

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.