Discover public static variable in java, include the articles, news, trends, analysis and practical advice about public static variable in java on alibabacloud.com
First, the syntax definition difference: the static keyword must be added before the static variable, but not before the instance variable.Differences during program running: instance variables belong to the attributes of an object. You must create
The common methods and member variables here refer to non-static methods and non-static member variablesFirst, Static is the meaning, is a modifier, can be used to modify variables or methods.Static member variables have global variables that do not
Directly on the code:Code Listing 1: Public classConstrocttest {Private StaticConstrocttest test =Newconstrocttest (); //static variable sta1 not given an initial value Public Static intsta1; //static variable sta1 gives the initial value
JAVA: Lesson 9 (keyword 2 static), java keyword staticKeyword 2: static)Features:Static is used to modify members (member functions and member functions)The existence of static takes precedence over the existence of objects and is loaded with the
1.static concept Static modifier, what is static modifier? As you know, any variable or code in the program is automatically allocated by the system at compile time to store the memory, and so-called static refers to the memory allocated after
Instance variable:
An instance variable is declared in a class, but outside of the method, a constructor or any block.
When space is allocated to an object in the heap, the slots create values for each instance variable.
When an object is
Why the Java Main method must be static
Look at the type of information today to find a problem, you can not print this keyword in the main method information, then remember the previous knowledge, can not call this in the static method. The reason
"Reprint" Static keyword parsing in JavaThe static keyword is a hard-to-understand keyword that many friends encounter when writing code and reading code, and is one of the points of knowledge that interviewers in major companies like to ask during
static variables and methods
Static Variables
For the member variables of the class, each object has its own member variable in memory, and the object's method action is the variable acting on the object itself, and the data of each object is
Static {} (static block) is executed only once when the class is loaded. It is generally used to initialize static variables and call static methods, next we will discuss in detail the features and applications of this statement block.1. During a
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.