22 lines
590 B
Java
22 lines
590 B
Java
// innerclasses/Parcel8.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
|
// Calling the base-class constructor
|
|
|
|
public class Parcel8 {
|
|
public Wrapping wrapping(int x) {
|
|
// Base constructor call:
|
|
return new Wrapping(x) { // (1)
|
|
@Override
|
|
public int value() {
|
|
return super.value() * 47;
|
|
}
|
|
}; // (2)
|
|
}
|
|
public static void main(String[] args) {
|
|
Parcel8 p = new Parcel8();
|
|
Wrapping w = p.wrapping(10);
|
|
}
|
|
}
|