标签:main err .config rgs 很多 ati 使用 rri png
package android.java.oop19; public interface APPConfig { /** * 注意:在接口定义的所以变量 都是 public static final 全局常量 * 就算你不写 public static final ,在接口中会自动补齐 public static final,隐式的 */ String CONFIG_1 = "Android-自定义控件"; String CONFIG_2 = "Android-Service"; public static final String CONFIG_3 = "Android-Activity"; public static final String CONFIG_4 = "Android-Broadcast Receiver"; int CONFIG_5 = 1000; boolean CONFIG_ISSTUDY = true; public static final double CONFIG_6 = 99999999.00; public static final float CONFIG_7 = 876734.00F; String CONFIG_8 = "Android-Content Provider"; String CONFIG_9 = "Android-H5"; }
package android.java.oop19; public class Demo { public static void main(String[] args) { System.out.println(APPConfig.CONFIG_1 + "\n" + APPConfig.CONFIG_2 + "\n" + APPConfig.CONFIG_3 + "\n" + APPConfig.CONFIG_4 + "\n" + APPConfig.CONFIG_5 + "\n" + APPConfig.CONFIG_6 + "\n" + APPConfig.CONFIG_7 + "\n" + APPConfig.CONFIG_8 + "\n" + APPConfig.CONFIG_9 + "\n" + APPConfig.CONFIG_ISSTUDY + "\n" ); } }
package android.java.oop19; public interface IUsb { /** * 不写 public abstract 也会自动补齐public abstract */ void usbInterface1(); /** * 以上usbInterface1方法,相当于以下方法 */ public abstract void usbInterface1(); }
package android.java.oop19; public interface IUsb { /** * 第一个USB接口 */ public abstract void usbInterface1(); /** * 第二个USB接口 */ public abstract void usbInterface2(); /** * 第三个USB接口 */ void usbInterface3(); /** * 第四个USB接口 */ void usbInterface4(); // .... }
package android.java.oop19; public class UsbImple implements IUsb { /** * 第一个USB接口 */ @Override public void usbInterface1() { System.out.println("此接口正在给手机充电中...."); } /** * 第二个USB接口 */ @Override public void usbInterface2() { System.out.println("此接口正在给移动硬盘传输资料中...."); } /** * 第三个USB接口 */ @Override public void usbInterface3() { System.out.println("此接口正在给平板充电中...."); } /** * 第四个USB接口 */ @Override public void usbInterface4() { System.out.println("此接口正在给无线网卡使用中...."); } }
package android.java.oop19; public class Demo { public static void main(String[] args) { IUsb iUsb = new UsbImple(); iUsb.usbInterface1(); iUsb.usbInterface2(); iUsb.usbInterface3(); iUsb.usbInterface4(); } }
标签:main err .config rgs 很多 ati 使用 rri png
原文地址:https://www.cnblogs.com/android-deli/p/10353163.html