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.
22 lines
381 B
22 lines
381 B
package 基础题2;
|
|
|
|
|
|
/**
|
|
* @author 胡灵美
|
|
* @version 1.0
|
|
* @created 31-10月-2025 14:49:20
|
|
*/
|
|
public class ConcreteConfigBuilder extends ConfigBuilder {
|
|
|
|
private int retryCount;
|
|
private int timeout;
|
|
public Config m_Config;
|
|
|
|
public ConcreteConfigBuilder(){
|
|
|
|
}
|
|
|
|
public void finalize() throws Throwable {
|
|
super.finalize();
|
|
}
|
|
}//end ConcreteConfigBuilder
|