• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

a question on thread flow

 
Ranch Hand
Posts: 504
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all, can you tell me how to approach questions like this?
 
Ranch Hand
Posts: 787
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Vad,
I would say 4 objects per notes in the code below:

[ October 07, 2003: Message edited by: Barkat Mardhani ]
 
Vad Fogel
Ranch Hand
Posts: 504
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My doubt is what if the scheduler decides to finish off the main() thread first and only then execute the new thread? Then, 2 String constants would be put in the constant pool to be reused in the run() method (then, "abc" and "cde" objects wouldn't be created?)
Yeah, after thinking awhile on my own stuff, I see you're right
4 objects will be created anyway. The difference would appear should I have different String constants in the main(). Or would it?
[ October 07, 2003: Message edited by: Vad Fogel ]
reply
    Bookmark Topic Watch Topic
  • New Topic