-
-
Save junbeom-kang/b543ce04ba6c96d8d0120251c668fa8d to your computer and use it in GitHub Desktop.
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
package Adapter; | |
public class start { | |
public static void main(String[] args) { | |
Adapter adapter=new Adapter(new charge_110V()); | |
Client client=new Client(adapter); | |
client.doCharge(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment