Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

18 lines
500 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();
}
} /* Output: (None) *///:~