A nested class refers to a class defined inside another class. The nested class exists only for its outer class. There are four types of nested classes: static member classes, non-static member classes, anonymous classes, and partial classes.
-
#Static member class is the simplest kind of nested class. It's better to think of it as a normal class that just happens to be defined inside another class. Static member classes can access all members of the enclosing class, including those private variables. Static member classes also comply with accessibility rules. If it is positioned private, it means that it can only be accessed inside the enclosing class.
public class PhotoListAdapter extends RecyclerView.Adapter<PhotoListAdapter.ImageVH> { static class ImageVH extends RecyclerView.ViewHolder { //代码省略 } }
In Android We are most familiar with listview's ViewHolder, which we usually use static member classes, usually as a public auxiliary class. Cache the layout in the view as a cache variable of the Listview.
-
Private static member class, used to represent the components of the object represented by the peripheral class.
The code is as follows
The syntax difference between non-static member classes and static member classes lies in whether there is the modifier static. Although their syntax is similar, the two are very different. Each instance of a non-static member class is implicitly associated with an enclosing instance of the enclosing class. Within the instance methods of a non-static member class, methods on the enclosing instance can be called. Only instances of static member classes can exist independently in the enclosing class. , an instance of a non-static member class cannot be created without an surrounding instance.
When an instance of a non-static member class is created, the association between it and the surrounding instance is also established, and this association cannot be modified later. This association usually occurs when an instance method of the enclosing class calls the constructor of a non-static member class. This association consumes the space of non-static member class instances and increases the time overhead of construction. If the member class does not need to access the peripheral class instance, please add the static modifier.
public class PhotoListAdapter extends RecyclerView.Adapter<PhotoListAdapter.ImageVH> { class ImageVH extends RecyclerView.ViewHolder { // 真是对外部类的实例持有,在Android开发中很大部分activity中的context的内存泄露因为这个原因。 } }
Anonymous class is different from other syntax units in JAVA. Anonymous class has no name. It is not a member of the peripheral class. It is not declared together with other members, but is used is declared and instantiated at the same time. Anonymous classes can appear anywhere in the code where an expression exists. Only if an anonymous class appears in a non-static environment, it will have a peripheral instance. Even if it is declared in a static environment, it cannot have any static members.
imageView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 代码省略 } });
Local classes are declared anywhere "local variables can be declared". Also comply with the scope rules, 1. Local classes have names that can be reused. 2. Unlike anonymous classes, only when the local class is defined in a non-static environment, it can have peripheral instances and cannot contain static members.
public class mainActivity extends Activity{ private Handler handler = new Handler(){ @Override public void handleMessage(Message msg) { // 此处同样可能引起context持有导致的内存泄露 } }; }
The above is the detailed content of Java nested class Android development must know. For more information, please follow other related articles on the PHP Chinese website!

JVM implements the WORA features of Java through bytecode interpretation, platform-independent APIs and dynamic class loading: 1. Bytecode is interpreted as machine code to ensure cross-platform operation; 2. Standard API abstract operating system differences; 3. Classes are loaded dynamically at runtime to ensure consistency.

The latest version of Java effectively solves platform-specific problems through JVM optimization, standard library improvements and third-party library support. 1) JVM optimization, such as Java11's ZGC improves garbage collection performance. 2) Standard library improvements, such as Java9's module system reducing platform-related problems. 3) Third-party libraries provide platform-optimized versions, such as OpenCV.

The JVM's bytecode verification process includes four key steps: 1) Check whether the class file format complies with the specifications, 2) Verify the validity and correctness of the bytecode instructions, 3) Perform data flow analysis to ensure type safety, and 4) Balancing the thoroughness and performance of verification. Through these steps, the JVM ensures that only secure, correct bytecode is executed, thereby protecting the integrity and security of the program.

Java'splatformindependenceallowsapplicationstorunonanyoperatingsystemwithaJVM.1)Singlecodebase:writeandcompileonceforallplatforms.2)Easyupdates:updatebytecodeforsimultaneousdeployment.3)Testingefficiency:testononeplatformforuniversalbehavior.4)Scalab

Java's platform independence is continuously enhanced through technologies such as JVM, JIT compilation, standardization, generics, lambda expressions and ProjectPanama. Since the 1990s, Java has evolved from basic JVM to high-performance modern JVM, ensuring consistency and efficiency of code across different platforms.

How does Java alleviate platform-specific problems? Java implements platform-independent through JVM and standard libraries. 1) Use bytecode and JVM to abstract the operating system differences; 2) The standard library provides cross-platform APIs, such as Paths class processing file paths, and Charset class processing character encoding; 3) Use configuration files and multi-platform testing in actual projects for optimization and debugging.

Java'splatformindependenceenhancesmicroservicesarchitecturebyofferingdeploymentflexibility,consistency,scalability,andportability.1)DeploymentflexibilityallowsmicroservicestorunonanyplatformwithaJVM.2)Consistencyacrossservicessimplifiesdevelopmentand

GraalVM enhances Java's platform independence in three ways: 1. Cross-language interoperability, allowing Java to seamlessly interoperate with other languages; 2. Independent runtime environment, compile Java programs into local executable files through GraalVMNativeImage; 3. Performance optimization, Graal compiler generates efficient machine code to improve the performance and consistency of Java programs.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
