Special Java class usage: File class, internal class, local class, Anonymous class

Source: Internet
Author: User

1. File class

Test is a file class.

class Test {   static void method() {      //...   }}public class Driver {   public static void main(String[] args) {      Test.method();   }}

2. Internal class

class OuterClass {   int outerData;   static int s_outerData;   void outerMethod() {}   static void s_outerMethod() {}   class InnerClass {      int innerData;      void innerMethod() {         innerData = outerData;         innerData = s_outerData;         outerMethod();         s_outerMethod();      }   }}

3. Local class

A local class is a class defined inside a method.

class A {   int data;   void method() {      class B {         int local_data;         void local_method() {            System.out.println("I'm the method in the local class.");         }      }   }}

4. Anonymous class

An anonymous class is also called an anonymous internal class. It is actually an unknown local class.

class Test {   void method(new Object() {      public String toString() {         System.out.println("Hi, I'm an anonymous class.");      }   });}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.