我是地图减少的新手。我想知道当我们在hadoop中实现我们的自定义数据类型时,readfields和write方法有什么用?例如,
public class Point3D implements Writable {
public float x;
public float y;
public float z;
public Point3D(float x, float y, float z) {
this.x = x;
this.y = y;
this.z = z;
}
public Point3D() {
this(0.0f, 0.0f, 0.0f);
}
public void write(DataOutput out) throws IOException {
out.writeFloat(x);
out.writeFloat(y);
out.writeFloat(z);
}
public void readFields(DataInput in) throws IOException {
x = in.readFloat();
y = in.readFloat();
z = in.readFloat();
}
public String toString() {
return Float.toString(x) + ", "
+ Float.toString(y) + ", "
+ Float.toString(z);
}
public void set(float x, float y, float z)
{
this.x=x;
this.y=y;
this.z=z;
}
}
在上面的示例中,自定义记录读取器使用 set 方法来设置 x、y 和 z 的值。所以我们最终,我们在映射器中获得了这些值。但是可写的 readfealds 和 write() 方法需要什么?请。帮助