简体   繁体   中英

Comparing two Integers with my own Comparator

I am learning how to use Comparator interface in java and I am trying to write my own Comparator which would compare Integers differently ( eg 3>5 ). I have a problem with it, could someone tell what is wrong with my code?

import java.util.*;
import java.lang.*;
class MyComparator<Integer> implements Comparator<Integer>
{
    public int compare(Integer a, Integer b)
    {
        if(a.compareTo(b)>0)
        return -1;
        else if(a.compareTo(b)<0)
            return 1; 
        else 
            return 0;
    }
}

The compilator cannot find compareTo(Integer).

Change

class MyComparator<Integer> implements Comparator<Integer>

to

class MyComparator implements Comparator<Integer>

In the first case you're declaring a type parameter which is shadowing java.lang.Integer .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM