-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.0
-
None
-
x86
-
linux_redhat_7.2
The Rectangle class does not state what happens to rectangles etc when they are out of interger bounds. For example it is possible to have a Rectangle with an x coordinate > 0 and a width of Integer.MAX_VALUE. The resulting coordinate of the far right of the rectangle is out of integer bounds. Should these rectangles work with methods such as intersection, union, add etc? The spec does not state that they won't yet many implementations use integer arithmetic to calculate the result and this causes integer overflows.
One possibility would be to throw IlleagalArgumentException in the constructor of REctangle if these kinds of Rectangles are not to be supported. Another, is to say that they will be handled properly and use longs for the additions and then convert back to integers.
One possibility would be to throw IlleagalArgumentException in the constructor of REctangle if these kinds of Rectangles are not to be supported. Another, is to say that they will be handled properly and use longs for the additions and then convert back to integers.
- duplicates
-
JDK-4491273 java.awt.Rectangle should explain the possible field overflow during calculation
-
- Resolved
-
- relates to
-
JDK-6423143 Rectangle methods should protect against overflow conditions where possible
-
- Resolved
-