Java的In( forin )测试仪 : Foreach语句 « 语言基础知识 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 语言基础知识 » Foreach语句屏幕截图 
Java的In( forin )测试仪
Java的In( forin )测试仪


/*
License for Java 1.5 'Tiger': A Developer's Notebook
     (O'Reilly) example package

Java 1.5 'Tiger': A Developer's Notebook (O'Reilly) 
by Brett McLaughlin and David Flanagan.
ISBN: 0-596-00738-8

You can use the examples and the source code any way you want, but
please include a reference to where it comes from if you use it in
your own products or services. Also note that this software is
provided by the author "as is", with no expressed or implied warranties. 
In no event shall the author be liable for any direct or indirect
damages arising in any way out of the use of this software.
*/


import java.io.IOException;
import java.io.PrintStream;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

public class ForInTester {

  public ForInTester() {
  }

  public List getList() {
    List list = new LinkedList();

    for (int i = 1; i <= 100; i++) {
      list.add("Item " + i);
    }

    return list;
  }

  /**
   * <p>Test a very basic, pre-Java 1.5 for loop</p>
   */
  public void testForLoop(PrintStream outthrows IOException {
    List list = getList()// initialize this list elsewhere

    for (Iterator i = list.iterator(); i.hasNext()) {
      Object listElement = i.next();
      out.println(listElement.toString());

      // Do something else with this list object
    }
  }

  /**
   * <p>Test a very basic, Java 1.5 for/in loop</p>
   */
  public void testForInLoop(PrintStream outthrows IOException {
    List list = getList()// initialize this list elsewhere

    for (Object listElement : list) {
      out.println(listElement.toString());

      // Do something else with this list object
    }
  }

  /**
   * <p>Test a simple array iteration</p>
   */
  public void testArrayLooping(PrintStream outthrows IOException {
    int[] primes = new int[] { 2357111317192329 };
    
    // Print the primes out using a for/in loop
    for (int n : primes) {
      out.println(n);
    }
  }

  /**
   * <p>Test an object array iteration</p>
   */
  public void testObjectArrayLooping(PrintStream outthrows IOException {
    List[] list_array = new List[3];

    list_array[0= getList();
    list_array[1= getList();
    list_array[2= getList();

    for (List l : list_array) {
      out.println(l.getClass().getName());
    }
  }

  /**
   * <p>Show list position in a loop (not possible with for/in)</p>
   */
  public void determineListPosition(PrintStream out, String[] args
    throws IOException {

    List<String> wordList = new LinkedList<String>();

    // Impossible to assign the words, since the iterator is used
    for (int i=0; i<args.length; i++) {
      wordList.add("word " (i+1": '" + args[i"'");
    }

    // You can print the words using for/in, but not assign them
    for (String word : wordList) {
      out.println(word);
    }

    StringBuffer longList = new StringBuffer();
    for (int i = 0, len=wordList.size(); i < len; i++) {
      if (i < (len-1)) {
        longList.append(wordList.get(i))
                .append(", ");
      else {
        longList.append(wordList.get(i));
      }
    }
    out.println(longList);
  }

  /**
   * <p>for/in can't remove items using an Iterator</p>
   */
  public void removeListItems(PrintStream out, String[] args
    throws IOException {

    List<String> wordList = new LinkedList<String>();

    // Assign some words
    for (int i=0; i<args.length; i++) {
      wordList.add("word " (i+1": '" + args[i"'");
    }

    // Remove all words with "1" in them. Impossible with for/in
    for (Iterator i = wordList.iterator(); i.hasNext()) {
      String word = (String)i.next();
      if (word.indexOf("1"!= -1) {
        i.remove();
      }
    }

    // You can print the words using for/in
    for (String word : wordList) {
      out.println(word);
    }
  }

  public static void main(String[] args) {
    try {
      String[] s = new String[]{"a","b","c"};
      
      
      
      ForInTester tester = new ForInTester();

      tester.testForLoop(System.out);
      tester.testForInLoop(System.out);

      tester.testArrayLooping(System.out);
      tester.testObjectArrayLooping(System.out);

      tester.determineListPosition(System.out, s);
      tester.removeListItems(System.out, s);
      
    catch (Exception e) {
      e.printStackTrace();
    }
  }
}

           
       
Related examples in the same category
1. Foreach数组Foreach数组
2. 简单的演示,打印所有类型的枚举简单的演示,打印所有类型的枚举
3. Foreach和通用数据结构Foreach和通用数据结构
4. 使用foreach(每个)样式循环使用foreach(每个)样式循环
5. 使用打破了foreach(每个)样式使用打破了foreach(每个)样式
6. 该foreach(每个)循环基本上是只读的
7. 使用foreach (每个)样式上的二维数组
8. Search an array using foreach(for each) style for.
9. Using a foreach(for each) for loop with a collection.
10. Using a foreach(for each) for loop on an Iterable object.
11. Java for in (forin) with CollectionJava for in (forin) with Collection
12. Java for in (forin) with generic CollectionJava for in (forin) with generic Collection
13. Java for in (forin): line-by-line iteration through a text fileJava for in (forin): line-by-line iteration through a text file
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.