`
leonzhx
  • 浏览: 768174 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
阅读更多

1)  It’s possible to place a class definition within another class definition. This is called an inner class.

 

2) If you want to make an object of the inner class anywhere except from within a method of the outer class, you must specify the type of that object as OuterClassName.InnerClassName.

 

3) When you create an inner class, an object of that inner class has a link to the enclosing object that made it, and so it can access the members of that enclosing object—without any special qualifications. In addition, inner classes have access rights to all the elements in the enclosing class. And the enclosing class can also access all members of an inner class.

 

4) The inner class secretly captures a reference to the particular object of the enclosing class that was responsible for creating it. Then, when you refer to a member of the enclosing class, that reference is used to select that member. Fortunately, the compiler takes care of all these details for you, but now you can see that an object of an inner class can be created only in association with an object of the enclosing class (when the inner class is non-static). Construction of the inner-class object requires the reference to the object of the enclosing class, and the compiler will complain if it cannot access that reference. Most of the time this occurs without any intervention on the part of the programmer.

 

5) If you need to produce the reference to the outer-class object, you name the outer class followed by a dot and this.(OuterClassName.this) The resulting reference is automatically the correct type, which is known and checked at compile time.

 

6) Sometimes you want to tell some other object to create an object of one of its inner classes. To do this you must provide a reference to the other outer-class object in the new expression, using the OuterCalssObj.new InnerClassName() syntax.

 

7) If you make a nested class (a static inner class), then it doesn’t need a reference to the outer-class object.

 

8) Inner classes can be created within a method or even an arbitrary scope. There are two reasons for doing this:

    a. You’re implementing an interface of some kind so that you can create and return a reference.
    b. You’re solving a complicated problem and you want to create a class to aid in your solution, but you don’t want it publicly available.

 

9) A class within the scope of a method or an arbitrary scode such as if scope (instead of the scope of another class) is called a local inner class. So it can only be accessed within that method or that scope.

 

10) An anonymous inner class is defined at the time you create an instance of the base class like :

new BaseClass() { //anonymous inner class definition} ;

The semicolon at the end of the anonymous inner class doesn’t mark the end of the class body. Instead, it marks the end of the expression that happens to contain the anonymous class. Thus, it’s identical to the use of the semicolon everywhere else.

 

11) If you’re defining an anonymous inner class and want to use an object that’s defined outside the anonymous inner class ( in its defining scope or method), the compiler requires that the argument reference be final. That also apply to local inner class.

 

12) With instance initialization, you can, in effect, create a constructor for an anonymous inner class.

 

13) If you don’t need a connection between the inner class object and the outer class object, then you can make the inner class static. This is commonly called a nested class.

 

14) A nested class means:
    a. You don’t need an outer class object in order to create an object of a nested class.
    b. You can’t access a non-static outer class object from an object of a nested class.

 

15) Nested classes are different from ordinary inner classes in another way, as well. static fields and methods in ordinary classes can only be at the outer level of a class, so ordinary inner classes cannot have static methods, static fields, nested classes or interfaces. However, nested classes can have all of these. It can be initialized by : new OuterClassName.InnerClassName();

 

16) Normally, you can’t put any code inside an interface, but a nested class can be part of an interface. Any class you put inside an interface is automatically public and static. Since the class is static, it doesn’t violate the rules for interfaces—the nested class is only placed inside the namespace of the interface.

 

17) It's suggested to put a main() in every class to act as a test bed for that class. One drawback to this is the amount of extra compiled code you must carry around. If this is a problem, you can use a nested class to hold your test code (the main() method). The inner class will generate a OuterClassName$InnerClassName.class after compiled. You can use this class for testing, but you don’t need to include it in your shipping product.

 

18) It doesn’t matter how deeply an inner class may be nested—it can transparently access all of the static members of all the classes it is nested within.

 

19) Typically, the inner class inherits from a class or implements an interface, and the code in the inner class manipulates the outer class object that it was created within. So you could say that an inner class provides a kind of window into the outer class.

 

20) The most compelling reason for inner classes is: Each inner class can independently inherit from an implementation. Thus, the inner class is not limited by whether the outer class is already inheriting from an implementation. Without the ability that inner classes provide to inherit—in effect—from more than one concrete or abstract class, some design and programming problems would be intractable. So one way to look at the inner class is as the rest of the solution of the multiple-inheritance problem. Interfaces solve part of the problem, but inner classes effectively allow "multiple implementation inheritance." That is, inner classes effectively allow you to inherit from more than one non-interface.

Comment by Sean, why not use aggregation/composition instead of multiple inheritance?

 

21) If you didn’t need to solve the "multiple implementation inheritance" problem, you could conceivably code around everything else without the need for inner classes. But with inner classes you have these additional features:
    a. The inner class can have multiple instances, each with its own state information that is independent of the information in the outer class object.
    b. In a single outer class you can have several inner classes, each of which implements the same interface or inherits from the same class in a different way.

    c. The point of creation of the inner-class object is tied to the creation of the outer-class object.
    d. There is no potentially confusing "is-a" relationship with the inner class; it’s a separate entity.

 

22) Because the inner-class constructor must attach to a reference of the enclosing class object, things are slightly complicated when you inherit from an inner class. The problem is that the "secret" reference to the enclosing class object must be initialized, and yet in the derived class there’s no longer a default object to attach to. Because the derived class is not an inner class, which does't require a instance of the outer class to instantialize. However the constructor of the derrived class must invoke the contructor of the super class, which is an inner class and needs an instance of its outer class to instanialize. You must use a special syntax to make the association explicitly in the constructor of the derrived class: enclosingClassReference.super();

 

23) Inner class cannot be overriden (constructors are static). If B extends A then A's inner class C can be described as B.C (same as A.C) and can be initilized via new B().new C(). But if B also has an inner class called C then B.C is specific to B's inner class C.

 

24) A local inner class cannot have an access specifier because it isn’t part of the outer class, but it does have access to the final variables in the current code block and all the members of the enclosing class.

 

25) Since the name of the local inner class is not accessible outside the method, the only justification for using a local inner class instead of an anonymous inner class is if you need a named constructor and/or an overloaded constructor, since an anonymous inner class can only use instance initialization. Another reason to make a local inner class rather than an anonymous inner class is if you need to make more than one object of that class.

 

26) If inner classes are anonymous, the compiler simply starts generating numbers as inner class identifiers. If inner classes are nested within inner classes, their names are simply appended after a '$' and the outer class identifier.

分享到:
评论

相关推荐

    Addison.Wesley.Test-Driven.iOS.Development

    Chapter 10. Putting It All Together Chapter 11. Designing for Test-Driven Development Chapter 12. Applying Test-Driven Development to an Existing Project Chapter 13. Beyond Today’s Test-Driven ...

    Java Programming for Kids

    Chapter 10. Creating a Tic-Tac-Toe Game Chapter 11. Working With Files and Serialization Chapter 12. Networking: Downloading Files From the Internet Chapter 13. Creating a Ping-Pong Game Chapter 14. ...

    Advanced.Java.Programming.0199455503

    Chapter 10. Java and XML Chapter 11. Input/Output PART II: NETWORK PROGRAMMING Chapter 12. Basic Networking Chapter 13. Socket Programming Chapter 14. Remote Method Invocation Chapter 15. Java Mail ...

    React Native in Action

    Chapter 1. Getting Started With React Native Chapter 2. Understanding React Chapter 3. Building Your First React Native App PART 2 Developing applications in React Native Chapter 1. Introduction To ...

    SPSS.Statistics.23.Step.by.Step

    Chapter 10. Means Procedure Chapter 11. Bivariate Correlation Chapter 12. t Test Procedure Chapter 13. 1-Way ANOVA Procedure Chapter 14. General Linear Model - 2-Way ANOVA Chapter 15. General Linear ...

    The.Cucumber.for.Java.Book.Behaviour-Driven.Development

    The Cucumber for Java Book has the same great advice about how to deliver rock-solid applications collaboratively, but with all code completely rewritten in Java. New chapters cover features unique ...

    《Java实用系统开发指南》CD光盘

    《Java实用系统开发指南》一书的源代码。该书是J道论坛彭晨阳编著,内容翔实新颖,非常富有针对性,是从事企业级java程序开发人员非常好的一本参考书 目录 CD ..\chapter2 ..\........\mysql.sql ..\........\...

    Pro.Java.8.Programming.3rd.Edition.1484206428

    Chapter 10. Adding Drag-and-Drop Functionality Chapter 11. Printing Chapter 12. Introducing Java Database Connectivity (JDBC) Chapter 13. Internationalizing Your Applications Chapter 14. Using XML ...

    Pro.Java.8.Programming.3rd.Edition.1484206428.epub

    Chapter 10. Adding Drag-and-Drop Functionality Chapter 11. Printing Chapter 12. Introducing Java Database Connectivity (JDBC) Chapter 13. Internationalizing Your Applications Chapter 14. Using XML ...

    Digital Signal Processing Using Matlab

    Chapter 10. Power Spectrum Density Estimation Chapter 11. Time-Frequency Analysis Chapter 12. Parametrical Time-Frequency Methods Chapter 13. Supervised Statistical Classification Chapter 14. Data ...

    Java与模式.part07-09.rar

    Java与模式.part07-09.rar

    Packt.Go.Design.Patterns.2017

    Chapter 10. Concurrency Patterns - Workers Pool and Publish/Subscriber Design Patterns Title: Go Design Patterns Author: Mario Castro Contreras Length: 399 pages Edition: 1 Language: English ...

    Java.SE.7.Programming.Essentials

    分享的图书,有关Java SE 7 SDK标准的书,全英文。相应章节: Chapter 1....Chapter 10. Understanding Java Interfaces and Abstract Classes Chapter 11. Throwing and Catching Exceptions in Java

    Creating.a.Data-Driven.Organization.1491916915

    Chapter 10. Data-Driven Culture Chapter 11. The Data-Driven C-Suite Chapter 12. Privacy, Ethics, and Risk Chapter 13. Conclusion Appendix A. On the Unreasonable Effectiveness of Data: Why Is More ...

    PHP & MySQL范例精解

    Chapter 10 - Contains the source code for the News/Blog project. Chapter 11 - Contains the source code for the Shell Script project. Chapter 12 - Contains the source code listings for Chapter 12.

    Electronic Filter Design Handbook

    Chapter 10. Component Selection for LC and Active Filters Chapter 11. Normalized Filter Design Tables Chapter 12. Introduction to Digital Filters Chapter 13. Finite Impulse-Response Filters ...

    iron-clad.java.building.secure.web.applications

    Proven Methods for Building Secure Java-Based Web Applications Develop, deploy, and maintain secure Java applications using the ...Chapter 10. Secure Software Development Lifecycle Appendix A: Resources

    06.Chapter6-Capacitors and Inductors.pptx

    06.Chapter6-Capacitors and Inductors.pptx

    sas9.1.3:Language Reference Concepts.pdf

    Chapter 10. . . . . . . . .SAS Output 161 Chapter 11. . . . . . . . .BY-Group Processing in SAS Programs 193 Chapter 12. . . . . . . . .WHERE-Expression Processing 195 Chapter 13. . . . . . . . ....

Global site tag (gtag.js) - Google Analytics