| Article: |
Micro-Tuning Step-by-Step | |
| Subject: | Might this not be quicker? | |
| Date: | 2002-03-26 05:49:54 | |
| From: | godfrer | |
|
public boolean checkInteger(String testInteger) { final int length = testInteger.length();
|
||
Showing messages 1 through 1 of 1.
-
RE:Might this not be quicker?
2002-03-29 11:11:48 steveftoth [View]
Sometimes you have to take a step back from the problem and see what it is that you are really trying to accomplish. This is the major problem with micro-optimising in general. Usually, instead of asking what really need to be done ( like in this case ), we just take what we are given and try to make that faster.


