DEV Community

Sudhakar V
Sudhakar V

Posted on

Java Class

In Java, a class can contain both static and non-static members.

Static Members:

Static members belong to the class rather than individual objects. They are shared across all instances of the class.

Key Points About Static Members:

  1. Static Variables:

    • Declared with the static keyword.
    • Memory is allocated only once when the class is loaded, and the same value is accessible by all objects.
    • Example:
     class StaticExample {
         static int counter = 0; // static variable
     }
    
  2. Static Methods:

    • Can be called directly using the class name without creating an object.
    • Cannot access non-static variables or methods directly.
    • Example:
     class StaticMethodExample {
         static void display() {
             System.out.println("Static method called");
         }
     }
     StaticMethodExample.display(); // Accessing static method
    
  3. Static Blocks:

    • Used for initializing static variables.
    • Executed once when the class is loaded.
    • Example:
     class StaticBlockExample {
         static int num;
         static {
             num = 10; // Static block initializing static variable
         }
     }
    

Non-Static Members:

Non-static members are tied to specific instances of a class. Each object has its own copy.

Key Points About Non-Static Members:

  1. Instance Variables:

    • Declared without the static keyword.
    • Each object gets its own separate copy of these variables.
    • Example:
     class NonStaticExample {
         int id; // non-static variable
     }
    
  2. Instance Methods:

    • Can access both static and non-static variables.
    • Require an object to be invoked.
    • Example:
     class InstanceMethodExample {
         int id;
         void show() {
             System.out.println("Instance method called: ID is " + id);
         }
     }
     InstanceMethodExample obj = new InstanceMethodExample();
     obj.show(); // Accessing instance method
    

Differences:

Aspect Static Members Non-Static Members
Access Class name Object reference
Memory Shared among all objects Separate for each object
Initialization Initialized at class loading Initialized with object creation
Usage Suitable for shared data (like constants) Suitable for object-specific data

Does this give you a clearer understanding? I can go deeper into concepts or practical use cases if you'd like! 😊

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (0)

Playwright CLI Flags Tutorial

5 Playwright CLI Flags That Will Transform Your Testing Workflow

  • 0:56 --last-failed: Zero in on just the tests that failed in your previous run
  • 2:34 --only-changed: Test only the spec files you've modified in git
  • 4:27 --repeat-each: Run tests multiple times to catch flaky behavior before it reaches production
  • 5:15 --forbid-only: Prevent accidental test.only commits from breaking your CI pipeline
  • 5:51 --ui --headed --workers 1: Debug visually with browser windows and sequential test execution

Learn how these powerful command-line options can save you time, strengthen your test suite, and streamline your Playwright testing experience. Click on any timestamp above to jump directly to that section in the tutorial!

Watch Full Video 📹️

👋 Kindness is contagious

If you found this post helpful, please leave a ❤️ or a friendly comment below!

Okay