Java代码编译问题

看代码时发现一个奇怪的问题,即一个类中定义为final的成员居然可以被其他类直接引用:


如下类ServiceRecord中定义的成员deliveredStarts,被类ActiveServices直接引用:


class ServiceRecord extends Binder {
...
    final ArrayList<StartItem> deliveredStarts = new ArrayList<StartItem>();
                            // start() arguments which been delivered.


ActiveServices中直接引用了ServiceRecord的final成员:
public class ActiveServices {...
    boolean stopServiceTokenLocked(ComponentName className, IBinder token,
            int startId) {

        ServiceRecord r = findServiceLocked(className, token, UserHandle.getCallingUserId());
        if (r != null) {
            if (startId >= 0) {
                // Asked to only stop if done with all work.  Note that
                // to avoid leaks, we will take this as dropping all
                // start items up to and including this one.
                ServiceRecord.StartItem si = r.findDeliveredStart(startId, false);
                if (si != null) {
                    while (r.deliveredStarts.size() > 0) {
                        ServiceRecord.StartItem cur = r.deliveredStarts.remove(0); //居然可以被直接引用????
                        cur.removeUriPermissionsLocked();
                        if (cur == si) {
                            break;
                        }
                    }
                }
在eclipse中定义类似代码,发现均不能直接引用final变量,只有当改变为public final后方可通过编译。因此怀疑仅在Make环境下才可以编译通过

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值