18 lines
481 B
Java
18 lines
481 B
Java
//: innerclasses/Parcel7.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
// Returning an instance of an anonymous inner class.
|
|
|
|
public class Parcel7 {
|
|
public Contents contents() {
|
|
return new Contents() { // Insert a class definition
|
|
private int i = 11;
|
|
@Override
|
|
public int value() { return i; }
|
|
}; // Semicolon required in this case
|
|
}
|
|
public static void main(String[] args) {
|
|
Parcel7 p = new Parcel7();
|
|
Contents c = p.contents();
|
|
}
|
|
} ///:~
|