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

📄 exercise 4.catalog.java

📁 son los ejercicios de ssd3 espero que les ayuden a algunos jeje se la pasan chido.....!!!!!!
💻 JAVA
字号:
import java.util.*;

/**
 * The class models a product catalog. This class implements the interface
 * Iterable<Product> to being able to iterate through the products using the
 * for-each loop.
 * 
 * @author Neil
 * @version 1.1.0
 * @see Product
 */
public class Catalog implements Iterable<Product> {
	
	private ArrayList<Product> products;

	/**
	 * Creates the collection products, which is initially empty.
	 */
	public Catalog() {
		
		products = new ArrayList<Product>();
	}

	/**
	 * Adds the specified product to the collection products.
	 * 
	 * @param product
	 *            new product to be added.
	 */
	public void addProduct(Product product) {
		
		products.add(product);
	}

	/**
	 * Returns an iterator over the instances in the collection products.
	 * 
	 * return an Iterator of Product
	 */
	public Iterator<Product> iterator() {
		
		return products.iterator();
	}

	/**
	 * Returns a reference to the Product instance with the specified code.
	 * Returns null if there are no products in the catalog with the specified
	 * code.
	 * 
	 * @param code
	 *            the specified code of the product being looking for.
	 * @return Returns a reference to the Product instance with the specified
	 *         code.Returns null if there are no products in the catalog with
	 *         the specified code.
	 */
	public Product getProduct(String code) {
		
		for (Iterator<Product> i = iterator(); i.hasNext();) {
			Product product = i.next();
			if (product.getCode().equals(code))
				return product;
		}
		return null;
	}

	/**
	 * Returns the number of instances in the collection products.
	 * 
	 * @return Returns the number of instances in the collection products.
	 */
	public int getNumberOfProducts() {
		
		return products.size();
	}
}

⌨️ 快捷键说明

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