class Point {
BigDecimal x;
BigDecimal y;
Point(double px, double py) {
x = new BigDecimal(px);
y = new BigDecimal(py);
}
void addFiveToCoordinate(String what) {
if (what.equals("x")) {
BigDecimal z = new BigDecimal(5);
x.add(z);
}
}
void show() {
System.out.print("
x: " + getX() + "
y: " + getY());
}
public BigDecimal getX() {
return x;
}
public BigDecimal getY() {
return y;
}
public static void main(String[] args) {
Point p = new Point(1.0, 1.0);
p.addFiveToCoordinate("x");
p.show();
}
}
奥基,我要增加2个比埃拉姆价值。 I m 使用双倍的构造(因为我认为这是可能的——在文件中有选择)。 如果我使用这一工具,我可以这样做:
x: 1
y: 1
当我使用系统时,印本显示我的兹变数,即:
z: 5