Java static, this, super, final usage
I. Static
Take a look at the following program:
Public class Hello {Public static void main (string [] ARGs) {// (1)System. Out. println ("Hello, world! "); // (2)}}
I have read this program,
Please read the following procedure:
public class hello{
public static void Main (string[] args) {//(1)
System.out.println ("hello,world!"); (2)
}
}
Read this program, for most of the learning Java from, are not unfamiliar. Even if you
Final:Final allows you to control whether your members, methods, or a class can be overwritten or inherited. These features make final an indispensable role in Java, it is also one of the keywords that must be known and mastered when learning Java.
Static, this, super, final usage in Thinking:java
This article is designed to help people who are ready to learn Java and just contact Java to recognize, master, and use the static, this, super, final, and other keywords. Java profound, I am
First, FinalDepending on the context of the program, the Java keyword final has the meaning of "This cannot be changed" or "final state", which can be used to modify non-abstract classes, non-abstract class member methods, and variables. You may
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
First, finalDepending on the context of the program, the Java keyword final has the meaning of "This cannot be changed" or "final state", which can be used to modify non-abstract classes, non-abstract class member methods, and variables. You may
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
2.6.3 static keywordGenerally, when creating a class, we will point out the appearance and behavior of the Class Object. Unless you use new to create an object for that class,Otherwise, you will not actually get anything. The data storage space will
Key concepts: Abstract classes, abstract methods, static classes, static internal classes, static methods, static variables, constants, global constants.
I. The use of abstract, modifier, you can modify class and Method 1, abstract modifier class,
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.