ArraySequence Funzionante

This commit is contained in:
2014-04-01 14:21:13 +02:00
parent eb15d53208
commit c8254693f9
3 changed files with 9 additions and 5 deletions

View File

@@ -17,9 +17,12 @@ public class ArraySequenceTest {
ArraySequence<test_object> a = new ArraySequence<test_object>(10);
a.addFirst(new test_object(3));
Position<test_object> p = a.addAfter(a.first(), new test_object(6));
System.out.print(a);
System.out.print (a.indexOf( a.next( a.first())));
}