Http://zhidao.baidu.com/question/397935417.html1.final decorated classes cannot be inherited and have no subclasses."Use environment":1. Classes that are not specifically designed for inheritance have complex invocation relationships between the
1. If a data is both static and final, it will have a storage space that cannot be changed.2. Final data: When final is used for the base data type, final lets its value remain the same, but when used with object reference, final only keeps
This example describes the final keyword usage in java. Share to everyone for your reference, specific as follows:
Depending on the context, the Java keyword Final also has a subtle distinction, but it usually means "this is immutable." "There are
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,
When it comes to the final keyword, it's probably a lot of people who are not unfamiliar with the final keyword when using anonymous internal classes. In addition, the string class in Java is a final class, so today we'll look at the use of the
Depending on the context, there are subtle differences in the Java keyword final, but it usually means "this cannot be changed." "There are two reasons why you don't want to change: one is efficiency, the other is design. Because there are two
Java string optimization
The final keyword in Java can be used in class members (not called domains), in class methods, and in classes.
The final is used in the domain to represent:
1, a constant amount of compilation that never changes.
2, a
Difference and usage of final, finally, and finalize in Java, finalfinalize
1. Simple differences:Final is used to declare attributes. Methods and classes indicate that attributes cannot be exchanged, methods cannot be overwritten, and classes
Java in the final, finally, finalize the difference and usage, troubled a lot of learners, the following we have some discussion on this issue, I hope that everyone's learning has helped.Method/Step
1Simple difference:Final is used to
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
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.