0 vs 1 (v3)

Revision 3 of this benchmark created on


Description

The hello world books of programming always start you off with i++, however did you know that i++ comes with a bit of overhead? that's because before you can increment i under the hood a new copy of i must be created. Using ++i you don't need that extra copy. i++ will return the current value before incrementing i. ++i returns the incremented version i. This test is to demonstrate that it's faster to use ++i. Get ready get set update your code!

Test runner

Ready to run.

Testing in
TestOps/sec
start as 0
hitCount = 0;
++hitCount;
ready
start as 1
hitCount = 1;
++hitCount;
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.