Guest User

Untitled

a guest
Apr 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class MutableInt {
  2.     private int value;
  3.    
  4.     public MutableInt(int value) {
  5.         this.value = value;
  6.     }
  7.    
  8.     public void add(int amount) {
  9.         value += amount;
  10.     }
  11. }
Add Comment
Please, Sign In to add comment