package asukohaproovid; import andmed.AsukohtDestruktoriga; public class Proov7 { public static void main(String[] args) { AsukohtDestruktoriga a=new AsukohtDestruktoriga(4, 6); a=null; System.gc(); for(int i=0; i<1000000000; i++){ a=new AsukohtDestruktoriga(i, 1); } } }