其他分享
首页 > 其他分享> > static final 还是 final static

static final 还是 final static

作者:互联网

The Java Language Specification recommends listing modifiers in the following order:

1. Annotations

2. public

3. protected

4. private

5. abstract

6. static

7. final

8. transient

9. volatile

10. synchronized

11. native

12. strictfp

例如:public static final

 

标签:Java,还是,synchronized,Specification,final,static,public
来源: https://www.cnblogs.com/wolf-sun/p/15931313.html