这是我的第一篇文章。这适用于 Java 7。
有人可以告诉我为什么我无法访问 CompareIpaddress 类中的“first.a”吗?(我不知道为什么 SOF 不允许我发布这个,除非我输入更多的东西......) 这足够填充吗?
谢谢,戈登
import java.util.Comparator;
import java.util.*; // just in case i need it.
import java.util.TreeSet;
public class CompareIpaddress <IPaddress >implements Comparator<IPaddress>
{
/************************************************compare()**/
public int compare (IPaddress first, IPaddress second)
{
if( first.a < second.a )
{
return -1;
}
}
}
import java.util.Comparator;
import java.util.*;
import java.util.TreeSet;
public class IPaddress
{
public int a, b, c, d;
IPaddress (int a, int b, int c, int d)
{
this.a=a;
this.b=b;
this.c=c;
this.d=d;
}
public int getA()
{
return a;
}
}