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

📄 concreteimplementorb.java

📁 23种设计模式参考源代码及文档说明
💻 JAVA
字号:
/*
 * 项目名称 Pattern
 * 包名称   com.niufish.pattern.bridge
 * 
 * 文件名称 ConcreteImplementorB.java
 * 
 */
package com.niufish.pattern.bridge;

/**
 * 具体实现B
 * <p>
 * <a href="ConcreteImplementorB.java.html"><i>View Source</i></a>
 * </p>
 * @author  Kingfish
 * @version 1.0
 */
public class ConcreteImplementorB implements Implementor {

    /**
     * @see com.niufish.pattern.bridge.Implementor#operationImp(java.lang.String)
     */
    public void operationImp(String inputText) {
        System.err.println("B:"+inputText);
    }

}

⌨️ 快捷键说明

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