• 抽象类的作用之一:sdk 传递你需要的参数


    抽象类可以干什么?抽象类可以让别人必须做一件事情,比如实现一个方法。

    那它有什么作用呢? 我开始也不知道啊,后来慢慢的知道了,在开发中,我知道了它是干什么的,怎么用的。比如你要写一个sdk给别人用。但是呢,有些东西你是要别人提供的,这时候你就可以写一个抽象类,让它返回给你你想要的东西。比如:

    public abstract class ZAbsActivity extends Activity {
    
        private static final String KEY_ACTION = "KEY_ACTION";
        private static final String KEY_LOGIN_PLATFORM = "KEY_LOGIN_PLATFORM";
        private static final int VALUE_ACTION_CREATE_SHORTCUT = 300;
        private static final int VALUE_ACTION_THIRDPART_LOGIN = 301;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            initAction();
    
        }
    
        private void initAction(){
            Intent intent = getIntent();
            if(intent == null){
                finish();
        }
    
            int action = intent.getIntExtra(KEY_ACTION, 0);
            switch (action){
                case VALUE_ACTION_CREATE_SHORTCUT:
                    createShortCut();
                    break;
                case VALUE_ACTION_THIRDPART_LOGIN:
                    String platform = intent.getStringExtra(KEY_LOGIN_PLATFORM);
                    handleThirdPartLogin(platform);
                    break;
            }
            finish();
        }
    
        private void handleThirdPartLogin(String platform){
            String token = getThirdPartToken(platform);
    
            Intent data = new Intent();
            data.putExtra("TOKEN", token);
            setResult(RESULT_OK, data);
        }
    
        protected abstract String getThirdPartToken(String platform);
    
        protected abstract int getShortCutResId();
    
        protected abstract String getIntentClassName();
    
        private void createShortCut(){
            PlugApi.createShortcut(this,"meizuxiaohsuo", getIntentClassName(),getShortCutResId());
        }
    }
    

    这是一个抽象类,里面的createShortCut方法是用来创建Android的图标的,但是,我是一个插件,创建图标必须是宿主程序来做,但是人家肯定不愿意写任何的代码。这里你都写好,你需要的参数,让它去实现。这样就可以把sdk做的很完美。别人只需要实现几个方法,不需要写代码。当然也可以用接口实现啦。这只是抽象类的冰山一角。好了,下班了。充实的一天!耶耶耶~!

  • 相关阅读:
    LeetCode-46. Permutations
    LeetCode-40. Combination Sum II
    LeetCode-39. Combination Sum
    剑指offer-数组中的逆序对
    LeetCode-295. Find Median from Data Stream
    LeetCode-268. Missing Number
    LeetCode-515. Find Largest Value in Each Tree Row
    GIS技术在采矿与勘探中的应用
    JavaScript 跨域总结与解决办法giserdqy.com
    JavaScript 跨域总结与解决办法giserdqy.com
  • 原文地址:https://www.cnblogs.com/caoxinyu/p/6647794.html
Copyright © 2020-2023  润新知