如何查看switch和vavr匹配的性能?

How to check performance of switch and vavr's match?

我很想知道 exacly switch vs vavr 的比赛表现如何,最容易检查的方法是什么?

@edit

我检查了一下,vavr 的开关似乎比普通开关慢 2 倍 java 开关

您可以在代码块前后查看系统时间,例如:

    startTime = System.nanoTime();
    // your code goes here
    endTime = System.nanoTime()