Skip to content

Instantly share code, notes, and snippets.

@AndersonChoi
Created March 10, 2017 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndersonChoi/f2f970ab6dd271faedd26db70902c862 to your computer and use it in GitHub Desktop.
Save AndersonChoi/f2f970ab6dd271faedd26db70902c862 to your computer and use it in GitHub Desktop.
abstract class AbstractBook implements Book{
public int priceCode(){
return this.code;
}
public int getPointPercent(){
return this.point;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment