18 lines
481 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: innerclasses/Parcel7.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-04-20 15:36:01 -07:00
// 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;
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public int value() { return i; }
}; // Semicolon required in this case
}
public static void main(String[] args) {
Parcel7 p = new Parcel7();
Contents c = p.contents();
}
} ///:~