Tagged Questions
10
votes
5answers
4k views
What “if” is faster - classic or shorthand? [closed]
There are two types of "if" statement in java - classic (if {} else {}) and shorthand (exp ? value1 : value2). Is one faster than another or are they the same?
Classic:
int x;
if (epression) {
x ...
10
votes
6answers
5k views
Java foreach efficiency
I have something like this:
Map<String, String> myMap = ...;
for(String key : myMap.keySet()) {
System.out.println(key);
System.out.println(myMap.get(key));
}
So is myMap.keySet() ...
7
votes
9answers
912 views
What is the Cost of Calling array.length
While updating for loops to for-each loops in our application, I came across a lot of these "patterns":
for (int i = 0, n = a.length; i < n; i++) {
...
}
instead of
for (int i = 0; i < ...
6
votes
9answers
635 views
Are Java static calls more or less expensive than non-static calls?
Is there any performance benefit one way or another? Is it compiler/VM specific? I am using Hotspot.
6
votes
3answers
242 views
Java Filters Performance Question
I have two questions. The first is do Filters add a lot of overhead to request. We have a filter and it is set to run on the URL pattern /*. This means it also runs on all the image request. I ...
5
votes
7answers
514 views
Is ++i really faster than i++ in for-loops in java?
In java I usually make a for-loop like following:
for (int i = 0; i < max; i++) {
something
}
But recently a colleague typed it so:
for (int i = 0; i < max; ++i) {
something
}
He ...
5
votes
8answers
605 views
Why do Java and C# have bitshifts operators?
Is the difference between integer multiply(temporarily forgetting about division) still in favor of shifting and if so how big is the difference?
It simply seems such a low level optimization, even ...
5
votes
12answers
371 views
Calling a getter multiple times or calling once and assigning to a variable?
say suppose I have class as :
public class Age {
private int age;
public int getAge() {
return this.age;
}
}
In my Main class I am calling the getAge() method many times.
So ...
4
votes
3answers
278 views
Java bytecode compiler benchmarks
Q.1. What free compiler produces the most optimal Java bytecode?
Q.2. What free virtual machine executes Java bytecode the fastest (on 64-bit multi-core CPUs)?
Q.3. What other (currently active) ...
4
votes
5answers
334 views
Which is better Java programming practice for looping up to an int value: a converted for-each loop or a traditional for loop?
Given the need to loop up to an arbitrary int value, is it better programming practice to convert the value into an array and for-each the array, or just use a traditional for loop?
FYI, I am ...
2
votes
6answers
962 views
Java: Performance of Enums vs. if-then-else
I've had no real luck getting a concise answer for this comparison by using Google and rather than do my own time consuming evaluations, I thought I would ask first.
I'm fairly sure that a switch ...
-2
votes
2answers
226 views
Remove the delimiter , at the end
String prefix = "";
for (String serverId : serverIds) {
sb.append(prefix);
prefix = ",";
sb.append(serverId);
}
The following code runs faster than the above code . the "," prefix object does ...