Class dependency causes stackoverflowerror

Source: Internet
Author: User
public class SchoolServiceImpl {private static SchoolServiceImpl instance = new SchoolServiceImpl();private static ClassServiceImpl classServiceImpl = ClassServiceImpl.getInstanse();public static SchoolServiceImpl getInstanse() {if (instance == null)return instance = new SchoolServiceImpl();return instance;}public int getSchoolCount() {return classServiceImpl.getClassesCount();}    public static void main(String[] args) {System.out.println(classServiceImpl.getClassesCount());}}

public class ClassServiceImpl {/** * @param args */private static ClassServiceImpl instance = new ClassServiceImpl();public static  ClassServiceImpl getInstanse() {if (instance == null)return instance = new ClassServiceImpl();return instance;}private static SchoolServiceImpl schoolServiceImpl=SchoolServiceImpl.getInstanse();public int getClassesCount(){   System.out.println(classServiceImpl.toString());return schoolServiceImpl.getSchoolCount();}}

The above two classes depend on each other's methods, resulting in an endless loop and eventually leading to memory overflow.

Lessons learned: Minimize the dependency between classes and achieve one-way dependency.

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.