One more question that relates to this interface.
Let's say that I would like to implement the interface now with arrays.
Here's a part of my code:
import java.util.Arrays;
class IPAddressShortArray implements IPAddress {
private int [] IpAdress;
public IPAddressShortArray(int num1, int num2, int num3, int num4) {
this.IpAdress[0] =num1 ;
this.IpAdress[1]=num2;
this.IpAdress[2]=num3;
this.IpAdress[3]=num4;
}
public String toString() {
return IpAdress.toString();
}
public boolean equals(IPAddress other) {
boolean T= true;
for (int i=0;i<=3;i++){
if (this.IpAdress[i]!=other[i]){
.......
}
}
}
There's a compiler error saying that The type of the expression must be an array type but it resolved to IPAddress, but IpAddress right now is represented by array, so what's the problem? why can't I refer to other[i] if I have this implementation?
I know that equals should not be implemented again. Let's assume that I want to implement it.
IpAdress(a member variable) andIPAddress(an interface). Extremely confusing, and also incorrect style (variables should start in lower case). – EboMike Apr 7 '11 at 23:13ipAddressOctets. – Dave Costa Apr 8 '11 at 12:10