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

  • Home
  • SEARCH
  • 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 8336207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:54:44+00:00 2026-06-09T03:54:44+00:00

class cc extends Thread { cc(String s) { super(s); } } class mainn {

  • 0
class cc extends Thread {
    cc(String s)  {
        super(s);
    }
}

class mainn {
    public static void main (String args[]) {
        cc t1 = new cc("first");   
        t1.start();                
    }
}

Question: Is the thread born

  • at this point –> cc t1 = new cc("first");
  • or is it born and started at this point –> t1.start();?
  • 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-09T03:54:45+00:00Added an answer on June 9, 2026 at 3:54 am

    “Born” is not a formal term that I’ve seen before in Java, relating to threads.

    The Thread object is constructed/instantiated/created when you call new cc("first").

    The thread itself is started when you call t1.start(). It still exists before then, but is not running, and will not be scheduled by the operating system.

    (P.S. Java naming conventions are that class names start with capitals – it is surprisingly confusing to read code that violates this. new cc(...) jumps out at me as somehow wrong.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

public class Test extends Thread{ public void hello(String s){ System.out.println(s); } public void run(){
public class PlayText extends Thread { private int duration; private String text; private PlayerScreen
public class StoreMessage extends Thread implements Serializable{ private static long start_nanotime=System.nanoTime(); private static int
I have a class class with main thread public class MainThread extends Thread {
This is my simple program in Java: public class Counter extends Thread { public
Here is my main: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); LinearLayout layout
public class Common { public synchronized void synchronizedMethod1() { System.out.println(synchronizedMethod1 called); try { Thread.sleep(1000);
This class extends Thread and once it is created, the thread is started. This
I have the following thread: class LemonadeMainMenuThread extends Thread { private SurfaceHolder mSurfaceHolder; private
Consider the following piece of code - class MyThread extends Thread { private int

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.