public class ByteTest {
    byte[] arr;

    public void actor1() {
        arr = new byte[4];
    }

    public static void main(String[] args) {
        ByteTest k = new ByteTest();
        for (int i=0; i<2_000; ++i) {
            k.actor1();
        }
    }
}
