Java testing program code running time

Source: Internet
Author: User

I suddenly wanted to accurately test the Java code execution time and found it online for a while. There are two methods to discover:
The first type is measured in milliseconds.

Java code
  1. // Pseudocode
  2. Long starttime = system. currenttimemillis (); // get the start time
  3. Dosomething (); // code snippet for testing
  4. Long endtime = system. currenttimemillis (); // get the end time
  5. System. Out. println ("program running time:" + (end-Start) + "Ms ");
// Pseudocode long starttime = system. currenttimemillis (); // get the start time dosomething (); // test the code segment long endtime = system. currenttimemillis (); // obtain the end time system. out. println ("program running time:" + (end-Start) + "Ms ");

The second type is calculated in nanoseconds.

Java code
  1. // Pseudocode
  2. Long starttime = system. nanotime (); // get the start time
  3. Dosomething (); // code snippet for testing
  4. Long endtime = system. nanotime (); // get the end time
  5. System. Out. println ("program running time:" + (end-Start) + "ns ");
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.