다음 편집기에서는 Java의 비정적 멤버 변수의 무한 루프에 대한 기사를 제공합니다(자세한 설명). 편집자님이 꽤 좋다고 생각하셔서 지금 공유하고 모두에게 참고용으로 드리도록 하겠습니다. 에디터를 따라가서 함께 살펴볼까요
1. 비정적 멤버 변수
멤버 변수가 비정적이고 현재 클래스가 인스턴스화되면 무한 루프가 발생합니다
예:
public class ConstructorCls { private ConstructorCls obj=new ConstructorCls(); }
public class TestC { public static void main(String[] args) { ConstructorCls c =new ConstructorCls(); } }
결과:
Exception in thread "main" java.lang.StackOverflowError at com.ConstructorCls.<init>(ConstructorCls.java:7) at com.ConstructorCls.<init>(ConstructorCls.java:7) at com.ConstructorCls.<init>(ConstructorCls.java:7)
분석: new ConstrutorCls()가 ConstrutorCls를 인스턴스화한 다음 이 클래스의 멤버 obj를 초기화합니다. ,obj 다시, 클래스 이는 인스턴스화되며 StackOverflowError
2. 정적 멤버 변수
정적 멤버 변수는 클래스에 속하며 무한 루프가 없습니다
예:
public class ConstructorCls { private static ConstructorCls obj=new ConstructorCls(); }
public class TestC { public static void main(String[] args) { ConstructorCls c =new ConstructorCls(); } }
분석: new ConstructorCls()를 생성할 때 먼저 JVM에 ConstructorCls를 추가하고 로드할 때 클래스의 정적 멤버를 초기화하고(로드할 때 한 번만 초기화됨) obj 객체를 초기화하고 새 ConstructorCls를 만듭니다. 여기서 중요한 점은 이 정적 멤버가 클래스에 속하고 특정 인스턴스 개체에 속하지 않으므로 무한 루프가 발생하지 않는다는 것입니다.
위 내용은 Java의 비정적 멤버 변수의 무한 루프에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!