`
standalone
  • 浏览: 619613 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

The 'static' keyword in java

    博客分类:
  • java
阅读更多

1. When a variable is defined 'static', it's called a "class variable', that is, all the objects of that class own that variable. A class variable can be accessed with the class, without creating objects of the class.

 

2. When a method is defined 'static', it can be called with class without need to create objects. These methods are called 'class methods'. Note that methods declared static cannot access variables without static. They cannot refer to this or super in any way.

 

3.  static block. Code in static block will be executed once when the class is firstly loaded.

 

4. static nested class. Declared inside another class, has no access to instance-specific data.

 

 

 

 

分享到:
评论

相关推荐

    coreJava240问与答面试题

    1) what are static blocks and static initalizers in Java ? .......................................................... 9 2) How to call one constructor from the other constructor ? .......................

    java课程设计--个人电话簿(增删查改排序等)

    - `searchContact(String keyword)`:根据关键词搜索联系人,可以是姓名、电话或邮箱。 - `sortContacts()`:对联系人列表进行排序,可以按照姓名或电话号码升序或降序排列。 在实现这些方法时,我们需要用到Java...

    Google C++ Style Guide(Google C++编程规范)高清PDF

    Header Files The #define Guard Header File Dependencies Inline Functions The -inl.h Files Function Parameter Ordering Names and Order of Includes Scoping Namespaces Nested Classes Nonmember, Static ...

    SpringSource CoreSpring认证考试题库.docx

    题目:Which of the following scenarios requires you to instantiate an ApplicationContext using the `new' keyword? A. Running your Spring application inside a JUnit test (using SpringJUnit4ClassRunner...

    C PROGRAMMING TUTORIAL

    ##### The static Storage Class Used to retain the value of a variable even after the end of the block. - **Lifetime:** Until the end of the program. - **Scope:** Limited to the current block. #####...

    Visual C++ 编程资源大全(英文源码 控件)

    (67KB)<END><br>27,langload.zip LANGLOAD shows how to use the LANGUAGE keyword in a resource file to mark language-specific resources. (2KB)<END><br>28,listfind.zip This sample shows how to use ...

Global site tag (gtag.js) - Google Analytics