Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Boxer1 {
- Integer i;
- int x;
- public Boxer1(int y) {
- x = i + y;
- System.out.println(x);
- }
- public static void main(String[] args) {
- new Boxer1(new Integer(4));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement