andyverma

Greenhorn
+ Follow
since Jun 14, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by andyverma

Hi the following code of Khalid and Rassmussen is giving me compile time errors
can anybody solve this

[ edited to format code with the [code] and [/code] UBB tags and to remove tabs -ds ]
[ June 19, 2002: Message edited by: Dirk Schreckmann ]
21 years ago

Originally posted by Richard Teston:
In the synchronize block syntax:
synchronized( ? )
{
// code to be synchronized
}
What is the "?".?
What is its significance to the block?


? is the object refernce,the monitor of this object refence has to be acquired by the thread who wishes to exceute the block of synchronized code.