Created
February 1, 2021 20:58
-
-
Save anderson-marques/cc9dbcc00839a926b3f319ad2e72d77e to your computer and use it in GitHub Desktop.
ClassesExemplo.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface Adocante { | |
public void adocar(Bebida b); | |
} | |
public class AcucarComum implements Adocante { | |
@Override | |
public void adocar(Bebida bebida) { | |
bebida.saborAdocicado+=1; | |
} | |
} | |
public class AcucarEmCubos implements Adocante { | |
@Override | |
public void adocar(Bebida bebida) { | |
bebida.saborAdocicado+=1; | |
} | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment