|
|
От: |
Lucker
|
http://lucker.intervelopers.com/ |
| Дата: | 25.11.04 10:53 | ||
| Оценка: | 3 (1) | ||
public class TestLoop {
private static class A {
public A() {
B b = new B();
}
}
private static class B {
public B() {
A a = new A();
}
}
public static void main(String[] args) {
new B();
}
}