예제 #1
0
  public static void main(String[] args) {

    String source = "123456789";

    System.out.println("start is    " + source);

    ArrayTest at = new ArrayTest();

    String reversed = at.reverse(source);

    System.out.println("reversed is " + reversed);
  }
예제 #2
0
 public static void main(String[] args) {
   ArrayTest test = new ArrayTest(10);
   if (test.array.length != 10) {
     System.err.println("test.array.length failed!");
   } else {
     System.out.println("test.array.length correct: " + test.array.length);
   }
   for (int i = 0; i < test.array.length; i++) {
     test.array[i] = i + 10;
   }
   for (int j = 0; j < test.array.length; j++) {
     if (test.get(j) != j + 10) {
       System.err.println("test.get(" + j + ") failed!");
     } else {
       System.out.println("test.get(" + j + ") correct: " + test.get(j));
     }
   }
 }
예제 #3
0
 public static void main(String[] args) {
   ArrayTest x = new ArrayTest();
   x.doStuff();
 }