package factory; /** * @author ·½³õÑô * @version 1.0 * @created 26-10ÔÂ-2025 15:05:28 */ public abstract class Product { public Product(){ } public void finalize() throws Throwable { } }//end Product