Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8677237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:24:26+00:00 2026-06-12T20:24:26+00:00

Lately I’ve been using loops with large numbers to print out Hello World :

  • 0

Lately I’ve been using loops with large numbers to print out Hello World:

int counter = 0;

while(true) {
    //loop for ~5 seconds
    for(int i = 0; i < 2147483647 ; i++) {
        //another loop because it's 2012 and PCs have gotten considerably faster :)
        for(int j = 0; j < 2147483647 ; j++){ ... }
    }
    System.out.println(counter + ". Hello World!");
    counter++;
}

I understand that this is a very silly way to do it, but I’ve never used any timer libraries in Java yet. How would one modify the above to print every say 3 seconds?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T20:24:28+00:00Added an answer on June 12, 2026 at 8:24 pm

    You can also take a look at Timer and TimerTask classes which you can use to schedule your task to run every n seconds.

    You need a class that extends TimerTask and override the public void run() method, which will be executed everytime you pass an instance of that class to timer.schedule() method..

    Here’s an example, which prints Hello World every 5 seconds: –

    class SayHello extends TimerTask {
        public void run() {
           System.out.println("Hello World!"); 
        }
    }
    
    // And From your main() method or any other method
    Timer timer = new Timer();
    timer.schedule(new SayHello(), 0, 5000);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lately I've been favoring using named pipes (option --enable-named-pipes) in MySQL running on windows,
Lately I've been writing some JS code using jQuery and JavaScript as it is
Lately I've been using XPathDocument and XNavigator to parse an XML file for a
Lately I have been working on trying facial recognition with the Kinect, using the
Lately, I have been using Automatic Reference Counting in my Objective-C/iOS programs, and have
Lately I have been using reflection to work in my project, and I have
Lately I have been trying my hands on Eclipse IDE for java development. I
Lately, I'v been struggling with an annoying situation on ASP.NET MVC. Here's the story
Lately I've been thinking a lot about building a website/blog/community oriented site. However I
Lately I've been job hunting, and for the most part, they would ask me

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.