⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accumulator.java

📁 一个关于java 的常用工具包
💻 JAVA
字号:
package org.jutil.java.collections;import java.util.Iterator;import java.util.Collection;import java.util.ConcurrentModificationException;/** * <p>A class of objects that accumulate over a collection.</p> * * <center> * 	<img src="doc-files/Accumulator.png"/> * </center> *  * <p>The Accumulator class is the general class for visiting a collection * while passing some object to the next element.  The original collection remains * unchanged. In relational algebra, this is aggregation.</p> * <p>The initial object is returned by the <code><a  href="Accumulator.html#initialAccumulator()">initialAccumulator()</a></code> * method and passed to the <code><a * href="Accumulator.html#accumulate(java.lang.Object, * java.lang.Object)">accumulate(Object element, Object acc)</a></code> method. * This method then returns the object to be given to the next element and so * on. The object returned by the visit of the last element of the collection * is returned to the user. The accumulation is started by invoking the * <code><a * href="Accumulator.html#accumulate(java.util.Collection)">accumulate(Collection * collection)</a></code> method.</p> *  * <p>An example of an accumulation is shown below. It is used to calculate the * state of a list of components based on the state of its components. The * traditional code is also shown.</p> *  * <p><b><underline>Accumulation the traditional way.</underline></b></p> * <pre><code> * Iterator iter = collection.iterator(); * MyType myAccumulator = (* initial value *); * while(iterator.hasNext()) { *   MyType element = (MyType) iter.next(); *   myAccumulator = (* accumulation of element and myAccumulator *); * } * </code></pre> *  * <p><b><underline>Accumulation using the <code>Accumulator</code> class.</underline></b></p> * <pre><code> * MyType myAccumulator =  *     (MyType) new Accumulator() { *       public Object initialAccumulator() { *         return (* initial value *); *       } * *       public Object accumulate(Object element, Object acc) { *         return (* accumulation of element and myAccumulator *); *       } *     }.accumulate(collection); * </code></pre> * <p><b><underline>The same, but now with specifications.</underline></b></p> * <pre><code> * MyType myAccumulator =  *     (MyType) new Accumulator() { *      /oo *        o also public behavior *        o *        o post (* preconditions for accumulate *); *        o *        o public model boolean isValidElement(Object element); *        oo/ * *      /oo *        o public behavior *        o *        o post \result = (* initial value *); *        oo/ *       public Object initialAccumulator() { *         return (* initial value *); *       } * *      /oo *        o public behavior *        o *        o post \result = (* accumulation of element and myAccumulator *); *        oo/ *       public Object accumulate(Object element, Object acc) { *         return (* accumulation of element and myAccumulator *); *       } *     }.accumulate(collection); * </code></pre> * * <p>The Jutil.org version requires slightly more code, but is * easier to understand than the traditional code because there are no control * statements anymore.<p> * * @path    $Source: /cvsroot/org-jutil/jutil.org/src/org/jutil/java/collections/Accumulator.java,v $ * @version $Revision: 1.14 $ * @date    $Date: 2002/07/20 19:11:29 $ * @state   $State: Exp $ * @author  Jan Dockx * @author  Marko van Dooren * @release $Name:  $ */public abstract class Accumulator implements CollectionOperator {  	/* The revision of this class */	public final static String CVS_REVISION ="$Revision: 1.14 $";  /**   * <p>Subclasses should implement this method to return the initialized accumulator.   * This method is called at the start of the accumulation. The result will be used   * in the application of <code>public Object accumulate(Object element, Object acc)</code>   * for the first element.</p>   */  public abstract Object initialAccumulator();    /**   * <p>This method is called for each element in the collection we are accumulating.   * Subclasses should implement this method to process <element> and accumulate   * the result in <acc>.</p>   * <p>The result is the accumulator that will be used for the next element of the   * collection to process.</p>.   *   * //MvDMvDMvD : names aren't clear : accumulator is not an Accumulator   *   * @param  element   *         The object the method will process and change the accumulator with.   * @param  acc   *         The accumulator for the accumulation.   *         For the first element to be processed, the result of initialAccumulator   *         is used. For the other elements, the result of this method applied on   *         the previous element is used.   */ /*@	 @ public behavior	 @   @ pre isValidElement(element);   @*/  public abstract Object accumulate(Object element, Object acc);  //   /**//    * <p>Perform the accumulation defined in//    * <code>public Object accumulate(Object element, Object acc)</code> for each//    * element of <set>. For the first element, the object returned by//    * <code>public Object initialAccumulator()</code> is used as accumulator.//    * For the other elements, the result of the application of//    * <code>public Object accumulate(Object element, Object acc)</code> on the//    * previous element is used as accumulator.</p>//    * <p>The contents of <set> is not changed.</p>//    * <p>The result of this method is the object returned by the application of//    * <code>public Object accumulate(Object element, Object acc)</code> on the//    * last element of the collection to be processed.</p>//    *//    * @param  set//    *         The set to perform this accumulation on. It will not be changed.//    *         This can be null, in which the initial accumulator is returned.//    * @result The accumulator returned by the final call of accumulate.//    *///   //MvDMvDMvD: can the Iterator throw ConcurrentModificationException ?//   //MvDMvDMvD: why a Set and not a Collection ?//   public final Object accumulate(Set set) {//     Object acc = initialAccumulator();//     if (set != null) {//       Iterator iter = set.iterator();//       while (iter.hasNext()) {//         acc = accumulate(iter.next(), acc);//       }//     }//     return acc;//   }    /**   * <p>Perform the accumulation defined in   * <code>public Object accumulate(Object element, Object acc)</code> for each   * element of <collection>. For the first element, the object returned by   * <code>public Object initialAccumulator()</code> is used as accumulator.   * For the other elements, the result of the application of   * <code>public Object accumulate(Object element, Object acc)</code> on the   * previous element is used as accumulator.</p>   * <p>The contents of <collection> is not changed.</p>   * <p>The result of this method is the object returned by the application of   * <code>public Object accumulate(Object element, Object acc)</code> on the   * last element of the collection to be processed.</p>   *   * @param  collection   *         The collection to perform this accumulation on. It will not be changed.   *         This can be null, in which the initial accumulator is returned.   * @result The accumulator returned by the final call of accumulate.   */ /*@   @ public behavior   @   @ pre (\forall Object o; collection.contains(o); isValidElement(o));	 @	 @ post (* the result of the accumulation is returned *);	 @ post collection == null ==> \result == initialAccumulator();	 @	 @ signals (ConcurrentModificationException) (* The collection was modified while accumulating *);   @*/  public final Object accumulate(Collection collection) throws ConcurrentModificationException {    Object acc = initialAccumulator();    if (collection != null) {      Iterator iter = collection.iterator();      while (iter.hasNext()) {        acc = accumulate(iter.next(), acc);      }    }    return acc;  }      // JDJDJD add methods for lists and maps}/*<copyright>Copyright (C) 1997-2001. This software is copyrighted by the people and entities mentioned after the "@author" tags above, on behalf of the JUTIL.ORG Project. The copyright is dated by the dates after the "@date" tags above. All rights reserved.This software is published under the terms of the JUTIL.ORG SoftwareLicense version 1.1 or later, a copy of which has been included withthis distribution in the LICENSE file, which can also be found athttp://org-jutil.sourceforge.net/LICENSE. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the JUTIL.ORG Software License for more details.For more information, please see http://org-jutil.sourceforge.net/</copyright>*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -