Java Tutorial

  1. http://java.sun.com/docs/books/tutorial/java/nutsandbolts/for.html
  2. Java Links
  3. jdk-5.0 chm
  4. The lightweight Java IDE
  5. java class簡介
public class ForEachDemo
        { public static void main(String[] args)
                { int[] arrayOfInts = { 32, 87, 3, 589, 12, 1076, 2000, 8, 622, 127 };
                for (int element : arrayOfInts) { System.out.print(element + " "); }
                System.out.println(); } }

Comments: Post a Comment



<< Home

This page is powered by Blogger. Isn't yours?