我在基础活动中使用Make函数检查互联网连接,因此我可以用简单的代码在所有活动中调用此函数,但是当我调用此函数时,出现错误“ cm.activeNetworkInfo不能为空”
public static void main(String[] args) {
String str1 = new String("A");
double hc = 0;
for (int i = 0; i < str1.length(); i++) {
int iv = (byte) str1.charAt(i);
hc = hc + Math.pow((iv * 31), (str1.length() - 1 - i));
}
System.out.println(hc); // 1.0
System.out.println(str1.hashCode()); // 65
}