This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package logger;
/**
* 抽象工厂:日志记录器工厂 定义创建日志记录器的抽象方法
* @author <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
* @version 1.0
* @created 26-10<31><30>-2025 22:36:06
*/
public abstract class LoggerFactory {
public LoggerFactory(){
}
public void finalize() throws Throwable {
* 创建日志记录器的抽象方法
* @return 具体的日志记录器实例(实现Logger接口<E68EA5>?
public abstract Logger createLogger();
}//end LoggerFactory