Skip to content

Commit

Permalink
Merge pull request lingcoder#339 from buqieryul/inner
Browse files Browse the repository at this point in the history
Update 11-Inner-Classes.md
  • Loading branch information
sjsdfg authored Dec 18, 2019
2 parents ff703d9 + 47fbbfb commit a448f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/book/11-Inner-Classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public class DotNew {
}
```

要想直接创建内部类的对象,你不能按照你想象的方式,去引用外部类的名字 **DotNew**,而是必须使用外部类的对象来创建该内部类对象,就像在上面的程序中所看到的那样。这也解决了内部类名字作用域的问题,因此你不必声明(实际上你不能声明)dn.new DotNew.Innero
要想直接创建内部类的对象,你不能按照你想象的方式,去引用外部类的名字 **DotNew**,而是必须使用外部类的对象来创建该内部类对象,就像在上面的程序中所看到的那样。这也解决了内部类名字作用域的问题,因此你不必声明(实际上你不能声明)dn.new DotNew.Inner

下面你可以看到将 **.new** 应用于 Parcel 的示例:

Expand Down

0 comments on commit a448f1b

Please sign in to comment.