我很惊讶地看到height
和width
成员的获取者return
类型为double
,但他们是int
。此外,具有双参数的setSize
方法具有以下定义:
/**
* Sets the size of this <code>Dimension</code> object to
* the specified width and height in double precision.
* Note that if <code>width</code> or <code>height</code>
* are larger than <code>Integer.MAX_VALUE</code>, they will
* be reset to <code>Integer.MAX_VALUE</code>.
*
* @param width the new width for the <code>Dimension</code> object
* @param height the new height for the <code>Dimension</code> object
*/
public void setSize(double width, double height) {
this.width = (int) Math.ceil(width);
this.height = (int) Math.ceil(height);
}
请查看Dimension课程。上面的评论说,值不能超过Integer.MAX_VALUE。为什么?
为什么我们之间有double
?有什么微妙的原因吗?有人可以向我解释一下吗?对不起我的坚持!
答案 0 :(得分:3)
该类将height
和width
存储为int
,它只提供了一个接受double的方法,因此您可以使用double值调用它(但它们会立即转换为int )。此文件中还有其他setSize()
方法接受int
值,甚至是Dimension
个对象。
由于这些值存储为int
,因此其最大值为Integer.MAX_VALUE
。
答案 1 :(得分:3)
java.awt.Dimension
已进行了改装以适应java.awt.geom
包,因此可以在需要Dimension2D
的任何地方使用它。后面的接口处理浮点,因此Dimension
也必须如此。仅限于int
字段,只能表示double
个的子集。同样限制Dimension2D.Float
。
答案 2 :(得分:0)
您可以将java Dimension类与int一起使用。如果您需要具有双倍宽度和高度的Dimension类,则可以使用以下内容:
public class DoubleDimension {
double width, height;
public DoubleDimension(double width, double height) {
super();
this.width = width;
this.height = height;
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public double getHeight() {
return height;
}
public void setHeight(double height) {
this.height = height;
}
@Override
public String toString() {
return "DoubleDimension [width=" + width + ", height=" + height + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
long temp;
temp = Double.doubleToLongBits(height);
result = prime * result + (int) (temp ^ (temp >>> 32));
temp = Double.doubleToLongBits(width);
result = prime * result + (int) (temp ^ (temp >>> 32));
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
DoubleDimension other = (DoubleDimension) obj;
if (Double.doubleToLongBits(height) != Double.doubleToLongBits(other.height))
return false;
if (Double.doubleToLongBits(width) != Double.doubleToLongBits(other.width))
return false;
return true;
}
}