其他分享
首页 > 其他分享> > android – “public void onDestroy()”和“protected void onDestroy()”之间的区别?

android – “public void onDestroy()”和“protected void onDestroy()”之间的区别?

作者:互联网

这是我的代码的一部分:

package com.admobsdk_dfp_handler;

import com.google.ads.*;
import com.google.ads.doubleclick.*;

import android.os.Bundle;
import android.os.Handler;
import android.app.Activity;
import android.view.Menu;
import android.widget.RelativeLayout;

public class AdMobSDK_DFP_Handler extends Activity {
    private DfpAdView adView;
    private static final String adUnitId = "/7732/test_portal7/android_app1_test_portal7/top_banner_non_sdk_application_android_app1_test_portal7";
    private Handler handler = new Handler();
    private Runnable runnable = new Runnable() {

        public void run() {
            adView.loadAd(new AdRequest());
            handler.postDelayed(this, 5000);
        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_ad_mob_sdk__dfp__handler);

        adView = new DfpAdView(this, AdSize.BANNER, adUnitId);

        RelativeLayout layout = (RelativeLayout) findViewById(R.id.mainLayout);

        layout.addView(adView);

        adView.loadAd(new AdRequest());

    };

    @Override
    protected void onPause() {
        handler.removeCallbacks(runnable);
        super.onPause();
    }

    @Override
    protected void onResume() {
        handler.postDelayed(runnable, 5000);
        super.onResume();
    }

    @Override
    protected void onDestroy() {
        handler.removeCallbacks(runnable);
        super.onDestroy();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_ad_mob_sdk__dfp__handler,
                menu);
        return true;
    }

}

protected void onDestroy()用于清理程序.但是,我看到了一些示例项目,它们通常使用public void onDestroy()来进行清理.

据我所知,在Java中,可以在包中访问受保护的方法,并且可以在任何地方访问公共方法.但通常一个类有自己的onDestroy(),所以它是否意味着任何一个都可以使用?在选择它们时我必须关注的任何一点?

谢谢您的帮助.

解决方法:

在公共和受保护之间,功能没有区别.唯一的区别是,对于public,您可以在任何类的活动实例上调用onDestroy().使用protected,您只能在同一个包中的同一个类或子类中调用.使用onDestroy(),我觉得将它公之于众都没有多大意义.这实际上可能是不好的做法.

换句话说,只要使用protected,除非你有一个非常特殊的理由让它可以访问更多的类.

我认为你看到的公开实施只是一个错误/没有必要.如果您想测试只需将其更改回受保护.如果没有编译器错误,则没有必要.

标签:code-cleanup,android,void,private,protected
来源: https://codeday.me/bug/20190901/1783657.html