Namespaces
Variants
Actions

How to detect bottlenecks in the code to optimize it

Jump to: navigation, search
SignpostIcon Graph1 52.png
Article Metadata

Article
Created: firt (15 Apr 2007)
Last edited: hamishwillee (18 Jul 2012)

If you need to optimize a Java ME game or application and you don't know where to optimize, you should use a Profiler as the ones in SDKs and you should try to take times over your code.

If you want to know how many milliseconds an algorithm takes to finish the task in one device, you should use this code:

long start, finish, duration;
start = System.currentTimeMillis();
 
// here goes all the code to check
 
finish = System.currentTimeMillis();
duration = finish - start;
This page was last modified on 18 July 2012, at 06:55.
68 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved