Android应用内结算 - 为什么要使用Integer.valueOf(0)?

时间:2017-02-16 00:28:28

标签: android security in-app-billing boxing android-billing

我正在按照本教程在我的应用中实施应用内结算:https://developer.android.com/google/play/billing/billing_integrate.html

实际开始购买的步骤如下:

startIntentSenderForResult(pendingIntent.getIntentSender(),
   1001, new Intent(), Integer.valueOf(0), Integer.valueOf(0),
   Integer.valueOf(0));

我的问题是,为什么他们使用Integer.valueOf(0)?仅使用0会有什么危害?我缺少任何安全理由吗?

startIntentSenderForResult的{​​{3}}清楚地表明方法签名采用简单的原始整数。所以我认为不需要手动拳击。

0 个答案:

没有答案