Home> Java> javaTutorial> body text

Understanding static members

王林
Release: 2024-08-31 13:01:39
Original
355 people have browsed it

Entendendo os membros estáticos

Understanding Static Members

Definition of Static Members:

  • Static members can be used independently of any instance of the class.
  • They are declared with the static keyword.
  • Methods and variables can be static.

Static Member Access:

  • Do not require object instances to be accessed.
  • Can be accessed using the class name followed by the dot operator (.).
  • Access example: Timer.count = 10;

Classic Example:

  • The main() method is static because it is called by the JVM when starting the program.

Static Variables:

  • They are shared between all instances of the class.
  • A single copy of the variable is available to all instances.

Code Example with Static Variables:

StaticDemo.java

  • The static variable y is shared by all instances and its modification affects all of them.

Static Methods:

  • Called using the class name, without having to create an object.
  • Only other static methods can be called directly.
  • Only static variables can directly access.
  • Do not have this reference.

Code Example with Static Methods:

StaticMeth.java

Restrictions of Static Methods:

  • Cannot access instance variables directly.
  • Example error: A static method trying to access a common instance variable will result in a compilation error.

See StaticError.java

The above is the detailed content of Understanding static members. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!