接口和内部类为我们提供了一种将接口与实现相分离的更加结构化的方法

抽象类和抽象接口

创建抽象类是希望通过这个接口操纵一系列的类
抽象类不一定包含抽象方法,包含抽象方法的类一定是抽象类
没有抽象方法的类定义为抽象类是为了阻止他实例化
如果一个类包含一个或者多个抽象方法,这个类必须被限定为抽象的

如果从一个抽象类继承,并且创建新建类的对象,就必须为基类中的所有抽象方法提供方法定义,如果不这样做那么这个导出类也是抽象类必须用abstract来声明

抽象类的所有方法并不需要都是抽象的,只需要将需要改变的方法设置为抽象方法即可

  1. abstract class Instrument { //表示一个接口没有任何具体的实现内容
  2. 抽象类不一定包含抽象方法
  3. 包含抽象方法的类一定是抽象类
  4. 没有抽象方法的类定义为抽象类是为了阻止他实例化
  5. private int i ;
  6. public abstract void play(Note n); //仅有声明,并没有方法体
  7. public String what(){ //抽象类中并不是所有的方法都是抽象方法
  8. return "Instrument";
  9. }
  10. public abstract void adjust();
  11. }
  12. class Wind extends Instrument{
  13. @Override
  14. public void play(Note n) { //为基类中的所有抽象方法提供方法定义
  15. System.out.println("Wind play " +n);
  16. }
  17. @Override
  18. public void adjust() {}
  19. public String what(){
  20. return "Wind";
  21. }
  22. }
  23. class Stringed extends Instrument{
  24. @Override
  25. public void play(Note n) { //为基类中的所有抽象方法提供方法定义
  26. System.out.println("Stringed Play()" + n );
  27. }
  28. @Override
  29. public void adjust() {}
  30. public String what(){
  31. return "Stringed";
  32. }
  33. }
  34. public class Music4 {
  35. static void tune(Instrument instrument){
  36. instrument.play(Note.B_FLAT);
  37. }
  38. public static void main(String[] args) {
  39. Instrument i1 = new Wind();
  40. Instrument i2 = new Stringed();
  41. tune(i1);
  42. tune(i2);
  43. }
  44. }

抽象类是很有用的重构工具,因为他们使得我们可以很容易的将公共方法沿着层次结构向上移动

接口

接口定义需要interface关键字,这个关键字产生一个完全抽象的类,没有任何的具体的实现,允许创建者确定返回类型,方法名,参数列表,但是没有方法体
interface前面可以添加public关键字
接口中可以包含域,并且这些域隐式的是static和final类型的,接口中的方法必须是public权限的,不声明也是

  1. interface Instrumento {
  2. int VALUE = 5; //默认为static和final
  3. void play(Note n); //接口里没有任何方法体
  4. void adjust();
  5. }
  6. class Windo implements Instrumento{ //实现接口
  7. @Override
  8. public void play(Note n) {
  9. System.out.println(this + " .play() " + n);
  10. }
  11. @Override
  12. public void adjust() {
  13. System.out.println(this + ".adjust");
  14. }
  15. @Override
  16. public String toString() {
  17. return "Windo";
  18. }
  19. }
  20. class Percussion implements Instrumento{//实现接口
  21. @Override
  22. public void play(Note n) {
  23. System.out.println(this + ".play() " + n);
  24. }
  25. @Override
  26. public void adjust() {
  27. System.out.println(this + " .adjust");
  28. }
  29. @Override
  30. public String toString() {
  31. return "Percussion";
  32. }
  33. }
  34. class Brass extends Windo{ //继承关系
  35. @Override
  36. public String toString() {
  37. return "Brass";
  38. }
  39. }
  40. public class Music5 {
  41. static void tune(Instrumento instrumento){
  42. instrumento.play(Note.MIDDLE_C);
  43. }
  44. public static void main(String[] args) {
  45. Instrumento instrumento1 = new Windo();
  46. tune(instrumento1);
  47. instrumento1.adjust();
  48. Instrumento instrumento2 = new Percussion();
  49. tune(instrumento2);
  50. Instrumento instrumento3 = new Brass();
  51. tune(instrumento3);
  52. }
  53. }

完全解耦

  1. class Processor{
  2. public String name(){
  3. return getClass().getSimpleName();
  4. }
  5. Object process(Object input){
  6. return input;
  7. }
  8. }
  9. class UpCase extends Processor{
  10. String process(Object input){//返回类型是Strin,所以需要强转
  11. return ((String)input).toUpperCase();
  12. }
  13. }
  14. class DownCase extends Processor{
  15. String process(Object input){
  16. return ((String)input).toLowerCase();
  17. }
  18. }
  19. public class Apply {
  20. public static void process(Processor p , Object s){ //可以接受任何类型的Processor,并且将其应用在一个Object对象
  21. //这样创建一个能够根据所传递的参数对象的不同而具有不同的行为
  22. 被称作"策略设计模式"但是只能接受Processor类型的
  23. System.out.println("使用的方法是: " + p.name());
  24. System.out.println(p.process(s));
  25. //此时此时Apply和Processor过度耦合因为Apply只可以处理Processor这一类型的代码
  26. }
  27. public static String s = "Hello Word";
  28. public static void main(String[] args) {
  29. System.out.println(s);
  30. process(new UpCase(),s);
  31. process(new DownCase(),s);
  32. }
  33. }

此时的Apply.process方法只可以接受任何类型的Processor
如果现在有一个类看起来好像也可以使用Apply.process方法

  1. public class Waveform {
  2. private static long count;
  3. private final long id = count++;
  4. @Override
  5. public String toString() {
  6. return "Waveform" + id;
  7. }
  8. }
  9. public class Filter {
  10. public String name(){ //这里看到Filter里面的方法和上述代码中的Processor
  11. //中的代码非常的类似 如何让他也可以适用Apply方法呢?
  12. return getClass().getSimpleName();
  13. }
  14. public Waveform process(Waveform input){
  15. return input;
  16. }
  17. }
  18. public class HighPass extends Filter{
  19. double cutoff;
  20. public HighPass(double cutoff){
  21. this.cutoff = cutoff;
  22. }
  23. public Waveform process(Waveform input){
  24. return input;
  25. }
  26. }
  27. public class LowPass extends Filter{
  28. double cutoff;
  29. public LowPass(double cutoff){
  30. this.cutoff = cutoff;
  31. }
  32. public Waveform process(Waveform input){
  33. return input;
  34. }
  35. }

首先因为Filter并不能直接使用Apply.process方法,因为他并不是继承Processor这个类的
因为里面的方法类似,我们可以将Processor改成一个接口

  1. public interface Processor {
  2. public String name();
  3. Object process(Object input);
  4. }

因为 name() 这个方法返回的是类型的名字,所有的类型都是通用的,此时可以用一个抽象类来将不变的name 方法设置成所有的导出类都一样,Process方法在所有的导出类里重写

  1. public abstract class StringProcessor implements Processor{
  2. @Override
  3. public String name() {//定义不变的方法
  4. return getClass().getSimpleName();
  5. }
  6. @Override
  7. public abstract String process(Object input);//每个继承类都不同的方法用抽象方法
  8. public static String s = "Hello World";
  9. public static void main(String[] args) {
  10. Apply.process(new UpCase(),s);
  11. Apply.process(new DownCase(),s);
  12. }
  13. }
  14. class UpCase extends StringProcessor {
  15. public String process(Object input){//返回类型是String,所以需要强转
  16. return ((String) input).toUpperCase();
  17. }
  18. }
  19. class DownCase extends StringProcessor{
  20. public String process(Object input){
  21. return ((String)input).toLowerCase();
  22. }
  23. }
  24. public class Apply {
  25. public static void process(Processor p,Object s){
  26. System.out.println("使用了 "+ p.name());
  27. System.out.println(p.process(s));
  28. }
  29. }

此时我们就可以对Filter进行适配 (适配器模式)

  1. class FilterAdapt implements Processor{ //实现Processor的接口
  2. Filter filter;
  3. public FilterAdapt(Filter filter){ //此处通过构造器的方式将Filter传过来
  4. this.filter = filter;
  5. }
  6. public String name() { //此时暴露的接口还是Processor接口
  7. //具体的实现由Filter进行处理
  8. return filter.name();
  9. }
  10. public Waveform process(Object input) {
  11. return filter.process((Waveform) input);//输入输出都应该是Waveform类型,所以这里应该进行强转
  12. }
  13. }
  14. public class FilterProcessor {
  15. public static void main(String[] args) {
  16. Waveform waveform = new Waveform();
  17. Apply.process(new FilterAdapt(new LowPass(2.0)),waveform);
  18. Apply.process(new FilterAdapt(new HighPass(3.0)),waveform);
  19. }
  20. }

JAVA中的多重继承

接口不仅仅是一种更纯粹形式的抽象类。并且接口没有任何实现,所以就没有任何和接口相关的存储,所以也就无法阻止多个接口的组合
可以继承任意多个接口,并且可以向上转型为每个接口,因为每一个接口都是一个独立的类型

  1. interface CanFight{
  2. void fight();
  3. }
  4. interface CanSwim{
  5. void Swim();
  6. }
  7. interface CanFly{
  8. void Fly();
  9. }
  10. class ActionCharacter{
  11. public void fight(){};
  12. }
  13. class Hero extends ActionCharacter implements CanFight, CanSwim, CanFly{
  14. @Override //Hero组合了具体类ActionCharacter和三个接口
  15. //使用这种方式组合的时候这个具体类要放在前面后面跟实现接口
  16. public void Swim(){}
  17. @Override
  18. public void Fly(){}
  19. }
  20. public class Adventure {
  21. public static void t(CanFight x){
  22. x.fight();
  23. }
  24. public static void u(CanSwim x){
  25. x.Swim();
  26. }
  27. public static void v(CanFly x){
  28. x.Fly();
  29. }
  30. public static void w(ActionCharacter x){
  31. x.fight();
  32. }
  33. public static void main(String[] args) {
  34. Hero h = new Hero();
  35. t(h);//根源走的ActionCharacter中的fight方法
  36. u(h);//根源走的Hero中的swim方法
  37. v(h);//根源走的Hero中的fly方法
  38. w(h);//根源走的ActionCharacter中的fight方法
  39. }
  40. }

通过继承来扩展接口

  1. interface Monster{
  2. void menace();
  3. }
  4. interface DangerousMonster extends Monster{ //直接继承Monster,并且增加一个新的方法
  5. //并且在DragonZilla中实现
  6. void destroy();
  7. }
  8. interface lethal{
  9. void kill();
  10. }
  11. class DragonZilla implements DangerousMonster{
  12. @Override
  13. public void menace(){}
  14. @Override
  15. public void destroy(){}
  16. }
  17. interface Vampire extends DangerousMonster , lethal{//接口可以多继承
  18. void drinkBlood();
  19. }
  20. class VeryBadVampire implements Vampire{
  21. @Override
  22. public void menace(){}
  23. @Override
  24. public void destroy(){}
  25. @Override
  26. public void kill(){}
  27. @Override
  28. public void drinkBlood(){}
  29. }
  30. public class HorrorShow {
  31. static void u(Monster b){
  32. b.menace();
  33. System.out.println("b.menace");
  34. }
  35. static void v(DangerousMonster d){
  36. d.destroy();
  37. System.out.println("d.destroy");
  38. d.menace();
  39. System.out.println("d.menace");
  40. }
  41. static void w(lethal l){
  42. l.kill();
  43. System.out.println("l.kill");
  44. }
  45. public static void main(String[] args) {
  46. DangerousMonster dangerousMonster = new DragonZilla();
  47. u(dangerousMonster);
  48. v(dangerousMonster);
  49. Vampire vampire = new VeryBadVampire();
  50. u(vampire);
  51. v(vampire);
  52. w(vampire);
  53. }
  54. }

组合接口时的命名冲突

  1. interface I1{void f();}
  2. interface I2{int f(int i);}
  3. interface I3{int f();}
  4. class C {public int f(){return 1;}}
  5. class C2 implements I1,I2{ //多继承接口
  6. @Override
  7. public void f(){}
  8. @Override
  9. public int f(int i){return 1;}
  10. }
  11. class C3 implements I2{
  12. @Override
  13. public int f(int i){return 0;}
  14. }
  15. class C4 implements I3{
  16. @Override
  17. public int f(){return 0;}
  18. }
  19. /*class C5 extends I1,I3 { //重载方法仅通过返回值类型是区分不开的
  20. @Override
  21. public void f(){}}*/
  22. /*interface I4 extends I1,I3{
  23. @Override
  24. default void f(){}}*/
  25. public class InterfaceCollision {
  26. }

接口中的域

放入接口中的任何域都是自动的是static和final的,但是现在有了枚举类型

嵌套接口

接口可以嵌套到类中或者其他接口中

  1. class A {
  2. interface B {void f();}
  3. public class BImp implements B{
  4. @Override
  5. public void f(){}}
  6. private class BImp2 implements B{
  7. @Override
  8. public void f(){}}
  9. public interface C{void f();}
  10. class CImp implements C{
  11. @Override
  12. public void f(){}}
  13. private class CImp2 implements C{
  14. @Override
  15. public void f(){}}
  16. private interface D{void f();}
  17. private class DImp implements D{
  18. @Override
  19. public void f(){}}
  20. public class DImp2 implements D{
  21. @Override
  22. public void f(){}}
  23. public D getD(){
  24. return new DImp2();
  25. }
  26. private D dRef;
  27. public void receiveD (D d){
  28. this.dRef = d;
  29. dRef.f();
  30. }
  31. }
  32. interface E{
  33. interface G{void f();}}
  34. interface H{void f();
  35. void g();
  36. }
  37. public class NestingInterfaces {
  38. public class BImp implements A.B{
  39. @Override
  40. public void f(){}}
  41. class CImp implements A.C{ // 不可以实现一个私有的接口
  42. @Override
  43. public void f(){}}
  44. // class DImp implements A.D{}
  45. class EImp implements E{
  46. public void g(){}}
  47. class EGImp implements E.G{
  48. @Override
  49. public void f() {}}
  50. class EImp2 implements E{
  51. public void g(){};
  52. class EG implements E.G{
  53. @Override
  54. public void f(){}}
  55. }
  56. public static void main(String[] args) {
  57. A a = new A(); //无法访问A.D
  58. //A.D ad = new a.getD();
  59. A a2 = new A();
  60. a2.receiveD(a.getD());
  61. }
  62. }

嵌套在另外一个接口中的接口自动的是public的,不能声明为private的
如果一个类中有一个private的接口,那么他只能被自身所用

接口与工厂

接口是可以多重继承的,生成遵循某个接口的对象的典型方式就是工厂设计模式,这和直接调用构造器是不同的,我们在工厂对象上调用的是创建方法,而这个工厂对象将生成接口的某个实现的对象,理论上通过这种方式,代码将完全的和接口实现分离

  1. interface Service{
  2. void method1();
  3. void method2();
  4. }
  5. interface ServiceFactory{
  6. Service getService();
  7. }
  8. class Imp1 implements Service{
  9. Imp1(){}
  10. @Override
  11. public void method1(){
  12. System.out.println("Imp method1");
  13. }
  14. @Override
  15. public void method2(){
  16. System.out.println("Imp method2");
  17. }
  18. }
  19. class ImpFac implements ServiceFactory{
  20. @Override
  21. public Service getService() {
  22. return new Imp1();//接口工厂的实现类中返回了一个接口的实现类
  23. }
  24. }
  25. class Imp2 implements Service{
  26. Imp2(){}
  27. @Override
  28. public void method1() {
  29. System.out.println("Imp2 method1");
  30. }
  31. @Override
  32. public void method2() {
  33. System.out.println("Imp2 method2");
  34. }
  35. }
  36. class Imp2Fac implements ServiceFactory{
  37. @Override
  38. public Service getService() {
  39. return new Imp2();
  40. }
  41. }
  42. public class Factories {
  43. public static void serviceConsumer(ServiceFactory fact){
  44. Service s = fact.getService();
  45. s.method1();
  46. s.method2();
  47. }
  48. public static void main(String[] args) {
  49. serviceConsumer(new ImpFac());
  50. serviceConsumer(new Imp2Fac());
  51. }
  52. }