0
long temp;
for ( int i = 0; i < size; i++ )
{
    temp = ls.get(i);
    System.out.println("temp is:" + temp);
    for ( int j = 0; j < size; j++)
    {
            if ( i == j )
            {

            }
            else if ( ls.get(i) == ls.get(j) )
            {
                // If Duplicate, do stuff... Dunno what yet.
                System.out.println(ls.get(i)+" is the same as: " + ls.get(j) );
                //System.out.println("Duplicate");
            }

    }
}

我有一个 Long 类型的列表,其中填充了几个 9 位数字,例如 900876012,我正在检查重复项,以便在导出到文件之前生成新数字并替换重复项。

首先,我检查数组中的位置是否相同,因为显然位置 1 的某些内容在位置 1 的同一个列表中是相同的,如果是,则忽略。

然后,我检查内容是否相同,但由于某种原因它不会评估为真,它以前是作为一个简单的“如果”本身做的。

作为参考,这里是数字,忽略“temp is”:

temp is:900876512
temp is:765867999
temp is:465979798
temp is:760098908
temp is:529086890
temp is:765867999
temp is:529086890
temp is:800003243
temp is:200900210
temp is:200900210
temp is:542087665
temp is:900876512
temp is:900876512
temp is:900876512
temp is:900876512

以下是完整的方法供参考:

public static void CheckContents(BufferedReader inFileStreamName, File aFile, Scanner s ) throws DuplicateSerialNumberException
{
    System.out.println();
    List<Long> ls = new ArrayList<Long>();
    List<String> ls2 = new ArrayList<String>();

long SerialNum = 0;
int counter = 0;
int size = 0;
String StringBuffer;

while (s.hasNextLine())
{
    ls.add(s.nextLong());
    //System.out.println();
    StringBuffer = s.nextLine();
    ls2.add(StringBuffer);
    size = ls.size();
    //System.out.println(ls.size());
    SerialNum = ls.get(size-1);
    //System.out.println(ls.get(size-1));
    System.out.println("Serial # is: " + SerialNum);
    //System.out.println(SerialNum + ": " + StringBuffer);
    counter++;
}

long temp;
for ( int i = 0; i < size; i++ )
{
    temp = ls.get(i);
    System.out.println("temp is:" + temp);
    for ( int j = 0; j < size; j++)
    {
        if ( i == j )
        {

        }
        else if ( ls.get(i) == ls.get(j) )
        {
            // If Duplicate, do stuff... Dunno what yet.
            System.out.println(ls.get(i)+" is the same as: " + ls.get(j) );
            //System.out.println("Duplicate");
        }

    }
}


}
4

2 回答 2

1

一个不错的。

在列表中,您不存储float(原始)而是Float对象。自动装箱使您对您透明。

并且==比较器不适用于对象(它会告诉您两个对象是否相同,但如果您有两个对象持有相同的值,则返回false)。

您可以使用

   if ( ls.get(j).equals(ls.get(i)) 

或(因为它是List<Long>

   if ( ls.get(j).longValue() == ls.get(i).longValue())

甚至(感谢自动装箱)

   if ( ls.get(j).longValue() == ls.get(i))
于 2013-03-24T19:21:03.747 回答
0

请试试

else if ( ls.get(i) != null && ls.get(i).equals(ls.get(j)) )

反而

于 2013-03-24T19:22:18.893 回答