作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个具有多个线程的小程序。我遇到了一些奇怪的问题,我已经将它们追溯到下面的类中。这是完整的代码,没有任何片段。
public class BoundingBox {
private volatile int top;
private volatile int left;
private volatile int bottom;
private volatile int right;
public static final int IGNORE = 0;
public static final int TOP = -2;
public static final int LEFT = -1;
public static final int BOTTOM = 2;
public static final int RIGHT = 1;
BoundingBox(int left, int top, int width, int height) {
this.top = top;
this.left = left;
this.right = left + width;
this.bottom = top + height;
}
public synchronized int top() { return top; }
public synchronized int left() { return left; }
public synchronized int bottom() { return bottom; }
public synchronized int right() { return right; }
public synchronized int width() { return right - left; }
public synchronized int height() { return bottom - top; }
public synchronized void translate(Vector2D vector) {
left += vector.getX();
right += vector.getX();
top += vector.getY();
bottom += vector.getY();
}
public synchronized void alignTo(Point2D point, int hAlign, int vAlign) {
if ((hAlign != IGNORE && hAlign != LEFT && hAlign != RIGHT)
|| (vAlign != IGNORE && vAlign != TOP && vAlign != BOTTOM))
throw new IllegalArgumentException();
/// START DEBUG CODE ///
if (right - left != width())
System.out.println("X");
if (bottom - top != height())
System.out.println("Y");
/// END DEBUG CODE ///
int width = width();
int height = height();
if (hAlign != IGNORE) {
left = point.getX();
if (hAlign == RIGHT)
left -= width;
right = left + width;
}
if (vAlign != IGNORE) {
top = point.getY();
if (vAlign == BOTTOM)
top -= height;
bottom = top + height;
}
}
}
X
和 Y
有时会打印。正如您所看到的,width()
被定义为 right - left
,但仍然会发生这两个不相等的情况(与 height()< 相同)/
)。这四个字段是私有(private)的,并且方法是同步的,所以没有任何东西可以中断 alignTo
,对吗?尽管如此,在我看来,有些事情确实发生了。
这段代码有什么问题?
最佳答案
将 top、left、bottom、right 声明为 volatile 不足以使它们按照您需要的方式保持同步。问题是,这些变量是在不同线程上使用translate 方法修改的,因此在执行alignTo 期间也会发生变化。您需要在alignTo期间锁定这些变量,或者将它们缓存到局部变量。
关于java - 同步方法似乎被中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16472487/
安装并修复我的 VS2015 实例后,我仍然无法让智能感知(服务器端)在我的 MVC View 中工作。当我在 session 中第一次打开 .cshtml 文件并找到 Activitylog 文件时
我是一名优秀的程序员,十分优秀!