The abstract method cannot use final or static modification of non-abstract methods. In the abstract class, you can use Fina
Source: Internet
Author: User
Abstract METHODS in abstract classes cannot be final, but they can be compiled by adding final before non-Abstract METHODS because abstract and final are mutually exclusive. The former is used for inheritance, and the latter is not allowed for inheritance.
Abstract METHODS in abstract classes cannot be static.
Non-abstract methods can be static
The package class integer, String, float, and double are all final classes and cannot be inherited! Integer I = new INTEGER ("6"); If the string is not a number, a running exception will occur (No compilation error will occur), but this rule is not applicable to boolean. When a string is used (case-insensitive), the value of the Boolean object is true, and other strings are false, for example:
Boolean B = new Boolean ("afiwou"); false
Boolean B = new Boolean ("true"); true
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.