Discover what use of static variable in java, include the articles, news, trends, analysis and practical advice about what use of 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
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
Java Basics-Stack and heap, static, final modifier, inner class, and Java memory allocation (RPM)Java Stack and heapHeap: Random in orderStack: LIFO (last-in/first-out).The Java heap is a run-time data area in which the objects of the class allocate
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
A deep understanding of JAVA's static (combined with the C language) and a deep understanding of static
1 public class statictest {2 3 4 String X = "I am a non-static variable"; 5 6 7 static int butterfly = 0; 8 static String staticX = "I Am a
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
Java static keywords and Java statics and static methodsThe static modifier can be used with a variable, a method, and represents a "static".
Static variables and static methods can be accessed through the class name and do not need to create an
One, static variable
The member variable decorated by the static keyword is called a static variable, and before we talk about the difference between a member variable and a local variable, what is the difference between a static variable and a
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
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
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.