1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.huawei.android.hms.agent.common;
|
| /**
| * 工具类
| */
| public final class StrUtils {
| /**
| * 返回对象的描述,这里为了避免用户数据隐私的泄露,只是返回对象本身的描述 类名@hashcode
| * @param object 对象
| * @return 对象的描述
| */
| public static String objDesc(Object object) {
| return object == null ? "null" : (object.getClass().getName()+'@'+Integer.toHexString(object.hashCode()));
| }
| }
|
|