How many benchmark mode results will this method print?
@Benchmark
@BenchmarkMode(Mode.All)
public String testAll() {
Map<Integer, String> map = new HashMap<>();
map.put(1, "A");
return map.get(1);
}How many benchmark mode results will this method print?
@Benchmark
@BenchmarkMode(Mode.All)
public String testAll() {
Map<Integer, String> map = new HashMap<>();
map.put(1, "A");
return map.get(1);
}Create a free account to access the full topic