Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-04-2008, 07:08 AM
Member
 
Join Date: Feb 2008
Posts: 1
sherinpearl is on a distinguished road
Synchronization Doesn't seem to work
Hi,

I have a class ThreadBO which starts 5 threads. Each thread is supposed to call a synchronized method 'IncrementVolCount()' which just increments a count variable & return the count variable to the thread. A stub code is given below. But when i run this i see that mutilple threads prints the same count. Could you please let me know if there's anything wrong in the way i have implemented synchronization/threading?


Code:
public class ThreadBO{ public void compute(){ //Create & Start Volume thread Objects. volThreadObj = new RSThread[5]; for(int intThreadCount=0;intThreadCount<5;intThreadCount++){ volThreadObj[intThreadCount] = new RSThread(); volThreadObj[intThreadCount].start(); } } } public class RSThread extends Thread{ public void run() { count = intUtilObj.IncrementVolCount(); System.out.println(Count); } } public class InterfaceUtils { public static int intVolCount=-1; public synchronized int IncrementVolCount() { return ++intVolCount; } }
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 04-23-2008, 07:30 PM
danielstoner's Avatar
Senior Member
 
Join Date: Apr 2008
Location: Canada
Posts: 155
danielstoner is on a distinguished road
Lots of typos in the code, that code won't compile! Why is the variable supposed to be protected by the synchronization public and static. How is each thread initialized with the instance of the synchronized object? Synchronization works, don't worry about that. You have bugs in the code. Post the whole working code and we might help.
__________________
Daniel @ [www.littletutorials.com]
Language is froth on the surface of thought
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Thread priorities, synchronization and messaging JavaForums Java Blogs 0 12-17-2007 01:21 PM
how would i get this to work...? deeadeed New To Java 6 12-06-2007 03:58 AM
is synchronization on method passing local variables as parameters needed reddzer Java Servlet 0 11-10-2007 05:47 PM
synchronization question oguz Threads and Synchronization 1 09-22-2007 01:34 AM
Synchronization problems Jack Advanced Java 2 07-02-2007 02:17 AM


All times are GMT +3. The time now is 09:27 PM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org