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

📄 interface_a_test.java

📁 软件测试和junit实践一书的源代码
💻 JAVA
字号:
/* * InterFace_A_Test.java * * Created on 2003年6月9日, 下午3:43 */package com.fastpoint.book;/** * * @author  Fastpoint */public class InterFace_A_Test implements InterFace_A {        /** Creates a new instance of InterFace_A_Test */    public InterFace_A_Test() {    }        /**     * @param args the command line arguments     */    public static void main(String[] args) {    }        public String a_Method() {        return "a_Method()";    }        public String b_Method() {        return "b_Method()";    }    }

⌨️ 快捷键说明

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