Java internal classes are divided into 4 types:
1) Static internal classes: Classes modified by static are called static classes. Putting static classes inside a class is called static internal classes
Features: Can access the outside world: static methods /Static properties, cannot access instance resources
Case:
import inner.Foo.Koo;//Be sure to import the Koo static inner class
public class Demo9 {
public static void main(String[] args) {
Koo koo = new Koo();
koo.add();
}
}
class Foo{
int a = 12;//Instance variable
static int aa=16;
public static void show(){ System.out.println("static method");}
//static inner class
static class Koo{
public void add(){
// System.out .println(a); Static inner classes cannot access instance resources (variables)
System.out.println(aa);
show();//Static inner classes can access static properties and methods of the outside world
}
}
}
2) Member inner class: Inside a class, a class without static modification is directly defined. When creating a member inner class object, the outer class must be created first.
Features: member inner class, can access external properties and methods
Case:
import inner.Foo1.Koo1;
public class Demo10 {
public static void main(String[] args) {
/ /Koo1 koo1 = new Koo1(); To create a member inner class, you must first create an external class object
Foo1 foo1 = new Foo1();
//Remember (written examination)
Koo1 koo1 = foo1. new Koo1();
koo1.show();
}
}
class Foo1{
int a =12;
static int aa = 16;
class Koo1{
void show() {
System.out.println(a+" , "+aa);
}
}
}
3) Local internal classes: very rarely used, characterized by defining a class within a method (enterprise development Medium and rarely used)
Features: local inner class, when referencing external variables, the variable must be modified with final
Case:
public class Demo11 {
public static void main(String[] args) {
final int a = 12;
final int b = 13;
class Foo2{
int c = 16;
public int add(){
//In the local inner class, refer to external variables , then the variable must be modified with final
return a+b+c;
}
}
Foo2 foo2 = new Foo2();
System.out.println(foo2.add());
}
}
4) Anonymous inner class: an inheritance of the original class
Features: used in combination with interfaces/abstract classes
eg new class name/interface name {
overridden method
};
Case:
public class Demo1 {
public static void main(String[] args) {
Koo koo = new Koo(){
// You can override the method
public String toString() {
Return "A Koo object is generated";
}
// New methods cannot be created in anonymous inner classes
// public void show(){
// System.out.println( "liu");
// }
};
System.out.println(koo);
// koo.show();
}
}
class Koo{
}
For more java internal classes and anonymous internal classes related articles, please pay attention to the PHP Chinese website!

JVM'sperformanceiscompetitivewithotherruntimes,offeringabalanceofspeed,safety,andproductivity.1)JVMusesJITcompilationfordynamicoptimizations.2)C offersnativeperformancebutlacksJVM'ssafetyfeatures.3)Pythonisslowerbuteasiertouse.4)JavaScript'sJITisles

JavaachievesplatformindependencethroughtheJavaVirtualMachine(JVM),allowingcodetorunonanyplatformwithaJVM.1)Codeiscompiledintobytecode,notmachine-specificcode.2)BytecodeisinterpretedbytheJVM,enablingcross-platformexecution.3)Developersshouldtestacross

TheJVMisanabstractcomputingmachinecrucialforrunningJavaprogramsduetoitsplatform-independentarchitecture.Itincludes:1)ClassLoaderforloadingclasses,2)RuntimeDataAreafordatastorage,3)ExecutionEnginewithInterpreter,JITCompiler,andGarbageCollectorforbytec

JVMhasacloserelationshipwiththeOSasittranslatesJavabytecodeintomachine-specificinstructions,managesmemory,andhandlesgarbagecollection.ThisrelationshipallowsJavatorunonvariousOSenvironments,butitalsopresentschallengeslikedifferentJVMbehaviorsandOS-spe

Java implementation "write once, run everywhere" is compiled into bytecode and run on a Java virtual machine (JVM). 1) Write Java code and compile it into bytecode. 2) Bytecode runs on any platform with JVM installed. 3) Use Java native interface (JNI) to handle platform-specific functions. Despite challenges such as JVM consistency and the use of platform-specific libraries, WORA greatly improves development efficiency and deployment flexibility.

JavaachievesplatformindependencethroughtheJavaVirtualMachine(JVM),allowingcodetorunondifferentoperatingsystemswithoutmodification.TheJVMcompilesJavacodeintoplatform-independentbytecode,whichittheninterpretsandexecutesonthespecificOS,abstractingawayOS

Javaispowerfulduetoitsplatformindependence,object-orientednature,richstandardlibrary,performancecapabilities,andstrongsecurityfeatures.1)PlatformindependenceallowsapplicationstorunonanydevicesupportingJava.2)Object-orientedprogrammingpromotesmodulara

The top Java functions include: 1) object-oriented programming, supporting polymorphism, improving code flexibility and maintainability; 2) exception handling mechanism, improving code robustness through try-catch-finally blocks; 3) garbage collection, simplifying memory management; 4) generics, enhancing type safety; 5) ambda expressions and functional programming to make the code more concise and expressive; 6) rich standard libraries, providing optimized data structures and algorithms.


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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools
