如何将数字添加到长值

时间:2015-07-12 20:32:00

标签: java long-integer digit

所以我有这个变量long hashvalue,如果有的话,我想给它添加数字。

我有一个数组为int arr[3][3]的数组-1, 1, 0, 0, -1, 1, 0, 0, -1

我需要这样的东西:

if(array[i][j] == -1){
    //add digit 2 to hashvalue
} else if(array[i][j] == 1){
    //add digit 1 to hashvalue
} else if(array[i][j] == 0){
    //add digit 0 to hashvalue
} 

hashvalue = 210021002

2 个答案:

答案 0 :(得分:2)

您可以简单地为hashvalue创建一个字符串,并通过+(或+ =)运算符将数字添加到字符串中。要从字符串接收长对象,可以使用Long.parseLong()函数。

String hashvalue = "";

// Add your digits to the String here
hashvalue += "1";

// Convert the String to a long
long finalHashvalue = Long.parseLong(hashvalue);

答案 1 :(得分:1)

你可以将hashvalue乘以10,然后添加想要的数字。 像:

if(array[i][j] == -1){
    hashValue = hashValue * 10 + 2;
} else if(array[i][j] == 1){
    hashValue = hashValue * 10 + 1;
} else if(array[i][j] == 0){
    hashValue = hashValue * 10 + 0;
} 

想象一下,你的hashValue以3开头,如果你将它乘以10则变为30,如果加上数字,假设为2,则变为32.数字已被添加。我希望我能帮忙!