Advertisement
Guest User

overloading

a guest
Nov 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Stats {
  2. private int charisma;
  3. ...
  4. private int initiative;
  5.  
  6. public setStats(int charisma) {
  7. this.charisma = charisma;
  8. }
  9.  
  10. public setStats(int charisma, int strength) {
  11. this.charisma = charisma;
  12. this.strength = strength;
  13. }
  14.  
  15. // etc.
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement