Confusion with java threads

While using threads I faced a little confusion (for you all) regarding communication between user created threads.

We all know that a communication can be establised b/w threads by using port based communication, shared objects, sokets etc. But if we dont use any of these then how a thead informs other threads that it has been executed and resource is free to use by others?

Is any daemon thread is created automatically to manage this? I just guess.

Make it little for me also!!

thanks

[520 byte] By [rahulapva] at [2007-11-27 9:14:25]
# 1
You can use the wait/notify mechanism to limit access to resources, or just synchronize access to them to make it available to one thread at a time.Many ways to do things, depending on your needs, there is no daemon thread to handle communication between threads, it's not needed.
-Kayaman-a at 2007-7-12 22:02:36 > top of Java-index,Java Essentials,Java Programming...
# 2
thanx
rahulapva at 2007-7-12 22:02:36 > top of Java-index,Java Essentials,Java Programming...