instancia mixto y método estático sincronizado, obtener una salida de prueba inesperado

Eric Wang:

Que yo sepa, en Java, un estático sincronizado y un método de instancia sincronizado le no afecta la ejecución de cada uno, ya que el bloqueo de diferentes objetos ( thisejemplo vs el classobjeto en sí mismo).

En siguiente código hay 2 hilos sub, se corre un método de instancia sincronizada, el otro corre un estáticas método sincronizado.

Desde ++operador no es atómico, estoy esperando siguiente caso de prueba para pasar (el recuento final debe ser inferior al tiempo de ++llamada) , pero siempre no pasan la prueba (los iguales recuento final a la hora ++llamada) .

SyncInstanceAndStaticRelationshipLearn.java

import org.testng.Assert;
import org.testng.annotations.Test;

/**
 * Relationship of instance & static synchronized method.
 *
 * @author eric
 * @date 1/3/19 9:32 PM
 */
public class SyncInstanceAndStaticRelationshipLearn {
    private static final int ROUND = 1000;
    private static final int INC_THREAD_COUNT = 2;
    private static final long OPTIONAL_INC_DELAY = 1; // optional increase delay,
    private static int N = 0;

    @Test
    public void test() throws InterruptedException {
        ThreadGroup tg = new ThreadGroup("runner");

        new Thread(tg, () -> {
            try {
                new MixedCounter().batchInsSync();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }, "ts-inst").start();

        new Thread(tg, () -> {
            try {
                MixedCounter.batchStaticSync();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }, "ts-static").start();

        Thread[] tArr = new Thread[INC_THREAD_COUNT];
        tg.enumerate(tArr); // get threads,

        // wait all runner to finish,
        for (Thread t : tArr) {
            t.join();
        }

        System.out.printf("\nfinal count: %d\n", getN());
        // just check the output, and can see the instance & static methods mixed,
        Assert.assertTrue(getN() < INC_THREAD_COUNT * ROUND);
    }

    public static int getN() {
        return N;
    }

    // increase & print,
    private static void incAndPrint() throws InterruptedException {
        System.out.printf("[%s] start, N: %d\n", Thread.currentThread().getName(), getN());
        N++;
        Thread.sleep(OPTIONAL_INC_DELAY);
        System.out.printf("[%s] end, N: %d\n", Thread.currentThread().getName(), getN());
    }

    // batch increase & print,
    private static void batchInsAndPrint() throws InterruptedException {
        for (int i = 0; i < ROUND; i++) {
            incAndPrint();
        }
    }

    // mixed instance / static counter,
    static class MixedCounter {
        public synchronized void batchInsSync() throws InterruptedException {
            batchInsAndPrint();
        }

        public synchronized static void batchStaticSync() throws InterruptedException {
            batchInsAndPrint();
        }
    }
}

Salida

[ts-inst] start, N: 0
[ts-static] start, N: 0
[ts-inst] end, N: 1
[ts-inst] start, N: 2
[ts-inst] end, N: 3
[ts-inst] start, N: 3
[ts-static] end, N: 2
[ts-inst] end, N: 4
[ts-inst] start, N: 4
[ts-inst] end, N: 5
[ts-inst] start, N: 5
[ts-inst] end, N: 6
[ts-inst] start, N: 6
[ts-inst] end, N: 7
[ts-inst] start, N: 7
[ts-inst] end, N: 8
[ts-inst] start, N: 8
[ts-static] start, N: 4
[ts-inst] end, N: 9
[ts-inst] start, N: 10
[ts-inst] end, N: 11
[ts-inst] start, N: 11
[ts-static] end, N: 10
...
[ts-inst] start, N: 1999
[ts-inst] end, N: 2000

final count: 2000

java.lang.AssertionError: expected [true] but found [false]
Expected :true
Actual   :false

Desde la salida, se puede ver que los 2 hilos de hecho mezclan, pero el recuento final no es menos, incluso después de aumentar la ROUNDa 1 millón, que sigue siendo el mismo.

Por lo tanto, qué parte estoy recibiendo mal?

Xingbin:

System.out.printfes synchronizedinternamente, aunque no gurantee una prueba fallida, que podría tener influencias.

Usted puede tratar de eliminarlos para eliminar la interferencia, como:

private static void incAndPrint() throws InterruptedException {  
    N++; 
}

Y esto pasó la prueba por algún tiempo en mi equipo:

final count: 1902
final count: 1111
final count: 1883

Supongo que te gusta

Origin http://43.154.161.224:23101/article/api/json?id=215887&siteId=1
Recomendado
Clasificación