私が以下のようなものを持っている場合、それは内部で何を意味しますかsynchronized block
synchronised (syncObject) {
基本的に、上記のブロック内に含めることができるスレッドは1つだけであり、1つのスレッドの実行が終了するとすぐに、2番目のスレッドがその同期ブロックsynced(syncObject)に入ります。右?私がより良い写真を撮れるように、誰かがLayMan言語で私に説明できますか?
private static final class Task implements Runnable {
{
private static Object syncObject = new Object();
public Task(Command command, BlockingQueue<Integer> pool1, BlockingQueue<Integer> pool2) {
this.command = command;
this.existPool = pool1;
this.newPool = pool2;
}
public void run()
{
synchronised (syncObject) {
if() {
existId = existPool.take();
attributeMethod(existId);
} else if() {
newId = newPool.take();
attributeMethod(newId);
}
}
}
}
// So I need to make this method synchronized or not? Currently I have made this synchronized
private synchronized void attributeMethod(int range) {
// And suppose If I am calling any other method here-
sampleMethod();
}
// What about this method, I need to make this synchronized as well? or not?
private synchronized void sampleMethod() {
}