Static Members

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 65:-  Static Members

In Java, static members belong to the class rather than to individual instances (objects) of the class. They are shared among all instances of the class and can be accessed using the class name, without creating an object of the class. Static members are declared with the static keyword.

There are two types of static members in Java:

  1. Static Variables (Class Variables): Static variables are shared among all instances of the class. They are initialized only once when the class is loaded into memory and retain their value throughout the program's execution.

    javaCopy code
    public class MyClass { // Static variable (class variable) static int count = 0; public MyClass() { count++; // Increment count for each instance created } }
  2. Static Methods (Class Methods): Static methods are also associated with the class and not with individual instances. They can be called using the class name and do not require an object to be created.

    javaCopy code
    public class MathUtility { // Static method (class method) public static int add(int a, int b) { return a + b; } }

Accessing Static Members: Static members can be accessed using the class name or through an instance of the class. However, it is recommended to access static members using the class name to make it clear that the member is shared among all instances.

javaCopy code
// Accessing static variable int totalCount = MyClass.count; // Accessing static method int sum = MathUtility.add(5, 3);

When to Use Static Members:

  • Use static variables when you need a value that should be shared among all instances of the class.
  • Use static methods when the method does not depend on the state of the instance and does not modify instance-specific variables.
  • Utility classes, such as MathUtility in the example above, often have static methods for general-purpose calculations without the need for object instantiation.

Note:

  1. Static members cannot directly access non-static (instance) members because they do not belong to any specific instance of the class.
  2. Non-static (instance) members can access static members because they belong to the class and are shared among all instances.


Disclaimer:-

Under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational, or personal use tips the balance in favor of fair use.

10. Classes and Objects

Comments: 0

Frequently Asked Questions (FAQs)

How do I register on Sciaku.com?
How can I enroll in a course on Sciaku.com?
Are there free courses available on Sciaku.com?
How do I purchase a paid course on Sciaku.com?
What payment methods are accepted on Sciaku.com?
How will I access the course content after purchasing a course?
How long do I have access to a purchased course on Sciaku.com?
How do I contact the admin for assistance or support?
Can I get a refund for a course I've purchased?
How does the admin grant access to a course after payment?