equals method
判断相等
Implementation
bool equals(ECFieldElementFp other) {
if (other == this) return true;
return (q == other.q && x == other.x);
}
判断相等
bool equals(ECFieldElementFp other) {
if (other == this) return true;
return (q == other.q && x == other.x);
}