Java中声明常量为什么用static修饰

Java中声明常量为什么用static修饰

分类:JavaSE编程基础

在做Android开发的时候,只要查看一些Android源码,不难发现,其中,声明常量都是如下格式:

<span style="font-size:14px;">private static final String TAG = "FragmentActivity";</span>声明为什么要添加static关键字呢?

之前是这么考虑问题的:定义一个类A,其中包含了用静态变量修饰的常量CONSTANT_A与直接用final修饰的常量CONSTANT_B

<span style="font-size:14px;">public class A {public static final String CONSTANT_A = "Hello";public final String CONSTANT_B = "Hello";}</span>在创建多个A的对象时,,常量A在内存中只有一份拷贝,而B则有多个拷贝,后者显然使我们不希望看到的。

今天在看Android官网的时候,恰巧看到这一问题:

原文:

Use Static Final For Constants

Consider the following declaration at the top of a class:

The compiler generates a class initializer method, called<clinit>, that is executed when the class is first used. The method stores the value 42 intointVal, and extracts a reference from the classfile string constant table forstrVal. When these values are referenced later on, they are accessed with field lookups.

在类第一次被执行的时候,编译器会生成一个初始化方法,这个方法将42的值存入对应的变量intVal,同时通过常量表获得strVal的一个引用。在之后引用这些变量的时候,将进行查询(表)来访问到。

We can improve matters with the "final" keyword:

通过使用final来提升性能:

The class no longer requires a<clinit>method, because the constants go into static field initializers in the dex file. Code that refers tointValwill use the integer value 42 directly, and accesses tostrValwill use a relatively inexpensive "string constant" instruction instead of a field lookup.

这样,常量进入了dex文件的静态区初始化部分,不在需要一个初始化方法(来对变量赋值),代码中将直接使用42的常量值,strVal也通过开销低廉的“字符串常量”来代替文件查表。

Note:This optimization applies only to primitive types andStringconstants, not arbitrary reference types. Still, it’s good practice to declare constantsstatic finalwhenever possible.

最有的一个小提示:这种右划仅对基本数据类型和String常量有效果,不包括其他引用类型。

看完Google的这段文章,虽然对里面部分名词还是稍有不解,但是了解到static final搭档的另外原因。

版权声明:本文为博主原创文章,未经博主允许不得转载。

上一篇Fragment间进行通信

顶0踩0

才能做到人在旅途,感悟人生,享受人生。

Java中声明常量为什么用static修饰

相关文章:

你感兴趣的文章:

标签云: