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.
分享到:
相关推荐
1) what are static blocks and static initalizers in Java ? .......................................................... 9 2) How to call one constructor from the other constructor ? .......................
- `searchContact(String keyword)`:根据关键词搜索联系人,可以是姓名、电话或邮箱。 - `sortContacts()`:对联系人列表进行排序,可以按照姓名或电话号码升序或降序排列。 在实现这些方法时,我们需要用到Java...
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 ...
题目: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...
##### 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. #####...
(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 ...