(create mode five) prototype mode

Source: Internet
Author: User

Package com.eyugame.modle;/* Prototype Class */public abstract class Prototype implements cloneable {private int x;    private int y;        /* Copy */public Prototype clone () {Prototype Prototype = null;        try {prototype = (prototype) super.clone ();        } catch (Clonenotsupportedexception e) {e.printstacktrace ();        } prototype.x = this.x;        Prototype.y = This.y;    return prototype;    } public int GetX () {return x;    } public void SetX (int x) {this.x = x;    } public int GetY () {return y;    } public void sety (int y) {this.y = y;    } abstract void Show ();    }/* sub-class */class Myprototype extends prototype{@Override public void Show () {SYSTEM.OUT.PRINTLN ("prototype mode");        }}class testprototype{public static void Main (string[] args) {myprototype mp=new myprototype ();        Myprototype mp2= (Myprototype) Mp.clone ();    Mp2.show (); }}


(create mode five) prototype mode

Related Article

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.