Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: synchronized

  1. #1
    Junior Member
    Join Date
    Oct 2013
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default synchronized

    I want to know the exact use of following two :

    static synchronized(lock){ // (if lock is static and if lock is non-static)
    // Accessing some objects (static only as here non-static data will not be allowed)
    ........
    }

    Synchronized(lock){// (if lock is static and if lock is non-static)
    // Accessing some objects (both non-static & static)
    ........
    }

    I want to know some real world use of these two approches


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Synchronized block in java

    Please start a new thread for your question. This one is quite old.

    What answers do you get from a search engine on the internet?

    Thread moved.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. synchronized block
    By me_shankara in forum Threads
    Replies: 2
    Last Post: April 27th, 2013, 12:26 PM
  2. synchronized block
    By me_shankara in forum Threads
    Replies: 2
    Last Post: December 10th, 2012, 08:34 AM
  3. [SOLVED] Help with SYNCHRONIZED
    By mds1256 in forum What's Wrong With My Code?
    Replies: 15
    Last Post: January 8th, 2012, 10:44 AM
  4. Synchronized block vs Synchronized method
    By tcstcs in forum Java Theory & Questions
    Replies: 1
    Last Post: April 20th, 2011, 07:51 AM
  5. Synchronized Collection
    By tcstcs in forum Java Theory & Questions
    Replies: 2
    Last Post: March 29th, 2011, 12:09 AM