摘要: 描述简单清晰!-------下面这个例子看起来有些奇怪://: Parcel6.java// A method that returns an anonymous inner classpackage c07.innerscopes;public class Parcel6 { public Contents cont() { return new Contents() { private int i = 11; public int value() { return i; } }; // Semicolon required in this case } ... 阅读全文
posted @ 2012-11-25 15:57 许仙儿 阅读(194) 评论(0) 推荐(0) 编辑