Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the static modifier in java

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains "how to use the static modifier in java". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to use the static modifier in java".

1. The static keyword is used to declare static variables independent of the object. No matter how many objects a class instantiates, its static variable has only one copy. Static variables are also called class variables. Local variables cannot be declared as static variables.

2. The static keyword is used to declare static methods independent of the object.

Example

Class InstanceCounter {private static int num = 540; / / Private static variable public static int getNum () {/ / Public static method return num;} / / the constructor can automatically execute the constructor using the same public InstanceCounter () {System.out.println (this.getNum ()) in this as in es6. / / this.getNum () = = getNum () this.num++; / / this.num = = num}} public class demo1 {public static void main (String [] args) {new InstanceCounter (); System.out.println (InstanceCounter.getNum ()) / print static method class name call 541}} Thank you for reading, this is the content of "how to use the static modifier in java". After the study of this article, I believe you have a deeper understanding of how to use the static modifier in java, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report