Java single case and multiple cases

Source: Internet
Author: User

The function of a singleton is to control how the class is generated, without letting the outer class arbitrarily new objects

1.car.java

Import Java.util.arraylist;import Java.util.list;public class Car {//privatized constructor to prevent the external class Newprivate Car () {}private static Car car = new car ();//single private static list<car> cars = new arraylist<car> ();//multiple examples, similar to connection pool public static car Getin Stance () {return car;} public void Run () {System.out.println ("Car running ......");}}

  

2.test.java

public class Test {@org. junit.testpublic void Test () {Car car = car.getinstance (); Car.run (); Car car2 = Car.getinstance (); System.out.println (car = = CAR2); System.out.println (Car.equals (CAR2));}}

  

Operation Result:

Java single case and multiple cases

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.