1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| package com.redisc;
import lombok.extern.slf4j.Slf4j;
import java.util.ArrayList; import java.util.List;
class A { };
class B { };
@Slf4j(topic = "c.Run") public class Run {
static A a = new A(); static B b = new B();
public static void main(String[] args) throws Exception { int i = 0; try { List<String> list = new ArrayList<>(); String a = "hello"; while (true) { list.add(a); a = a + a; i++; } } catch (Throwable e) { e.printStackTrace(); System.out.println(i); }
}
}
|