You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
469 B
26 lines
469 B
package factory;
|
|
|
|
|
|
/**
|
|
* @author 方初阳
|
|
* @version 1.0
|
|
* @created 26-10月-2025 15:05:28
|
|
*/
|
|
public class ConcreteCreator extends Creator ConcreteProduct {
|
|
|
|
public ConcreteCreator(){
|
|
|
|
}
|
|
|
|
public void finalize() throws Throwable {
|
|
super.finalize();
|
|
}
|
|
/**
|
|
* 瀹炵幇宸ュ巶鏂规硶锛屽垱寤哄苟杩斿洖鍏蜂綋浜у搧瀹炰緥
|
|
* @return ConcreteProduct瀹炰緥
|
|
*/
|
|
@Override
|
|
public Product factoryMethod(){
|
|
return null;
|
|
}
|
|
}//end ConcreteCreator
|