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 8383381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T17:09:03+00:00 2026-06-09T17:09:03+00:00

I call to join , so i dont understand why the main thread print

  • 0

I call to join , so i dont understand why the main thread print ‘End’ before all threaded were finished.
The output is :

End
Thread
Thread

Additional related question:
Just to make sure if is set daemon flag to true, is it mean that there is no meaning to call to join (because main can be finished when there are still daemon threads)?

#!/usr/bin/env python
import sys
import threading
from time import sleep

num_worker_threads = 2                  
threads = []   

def worker():
    sleep(1)
    print 'Thread'

for i in range(num_worker_threads):
     t = threading.Thread(target=worker)
     threads.append(t)
     t.start()
     t.join

print 'End'
  • 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-09T17:09:04+00:00Added an answer on June 9, 2026 at 5:09 pm

    Because you actually don’t call join. Replace:

    t.join
    

    with:

    t.join()
    

    The point is that t.join expression returns bound method object, and adding parentheses makes expression to be a method call.

    Joining threads matters only for user threads, daemon threads will not block main thread to finish.

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

Sidebar

Related Questions

this call my $th = threads->create(\&print, Hello thread World!\n); $th->join(); works fine. But as
thread.join() will call thread.wait() , but who and when notifies (either with thread.notify() or
Is it possible to set a timeout for a call to std::thread::join() ? I
I'm seeing an issue where a call to boost's thread->join in a destructor leads
I just want my main thread to wait for any and all my (p)threads
What state is a Java thread in after you call join with a timeout
Is it OK not to call Thread#join ? In this case, I don't care
I am attempting to call the Apache Commons StringUtils.join() method from within a Groovy
I have a main() , which spawns a thread, and then joins to it.
I have a list of threads, and I'm trying to get my main thread

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.