use of synchronozation

use of synchronozation

View Answers

December 1, 2008 at 12:13 AM

Hi friend,


Synchronozation is a mechanism which is used to provide the priority for
multiple thread programs to avoid the deadlock condition


If there is a portion of code within a method or the
complete method that can be accessed by multiple threads,
that section of code is called critical section. To make
sure that only one thread can access critical section at a
time, we synchronize critical section. Synchronization is
the keyword to avoid concurrent access to critical section
of the code.

There are two ways to synchronized the execution of code:

1. Synchronized Methods

2. Synchronized Blocks (Statements)

Synchronized Methods :

public class SynThread{
public static void main(String args[]){
Share s=new Share();
MyThread m1=new MyThread(s,"Thread1");
MyThread m2=new MyThread(s,"Thread2");
MyThread m3=new MyThread(s,"Thread3");
}
}
class MyThread extends Thread{
Share s;
MyThread(Share s,String str){
super(str);
this.s=s;
start();
}
public void run(){
s.doword(Thread.currentThread().getName());
}
}
class Share{
public synchronized void doword(String str){
for(int i=0;i<5;i++){
System.out.println("Started :"+str);
try{
Thread.sleep(100);
}catch(Exception e){}
}
}
}



December 1, 2008 at 12:15 AM

Synchronized Blocks (Statements)

public class SynStatement{
public static void main(String args[]){
Share s=new Share();
MyThread m1=new MyThread(s,"Thread1");
MyThread m2=new MyThread(s,"Thread2");
MyThread m3=new MyThread(s,"Thread3");
}
}
class MyThread extends Thread{
Share s;
MyThread(Share s,String str){
super(str);
this.s=s;
start();
}
public void run(){
s.doword(Thread.currentThread().getName());
}
}
class Share{
public void doword(String str){
synchronized(this){
for(int i=0;i<5;i++){
System.out.println("Started :"+str);
try{
Thread.sleep(100);
}catch(Exception e){}
}
}
}
}

For more information on Synchronization visit to :

http://www.roseindia.net/java/thread/synchronization.shtml

http://www.roseindia.net/java/java-methods/java-method-synchronized.shtml

http://www.roseindia.net/tutorialsearch/?t=synchronized

Thanks











Related Tutorials/Questions & Answers:
use of synchronozation - Java Interview Questions
use of synchronozation  once compare arraylist and vector,arraylist is not synchronization and not athread safe,so what are the advantages of synchronization with examples.   Hi friend, Synchronozation
the use of ForwardAction
the use of ForwardAction  What is the use of ForwardAction
Advertisements
use forms.
use forms.  How do I use forms
use of annotation.
use of annotation.  for concurrency which annotation can be used
use is of 2
use is of 2  why we use 2 in "Integer.parseInt(str,2);" for binary to decimal conversion..??   ya i got it... because binary contain only two o and 1...so here use 2...same as octal has 8
Use of jQuery
Use of jQuery  What is the use of jQuery?   Hi, jQuery is JavaScript Ajax library. Developer is using it to create rich internet applications.ADS_TO_REPLACE_1 Read at jQuery Tutorial. Thanks
Java Use cases
Java Use cases  What are use cases
use of jquery
use of jquery  what is a jquery? what is the evalution of jquery?   Hello Friend, Please visit the following link:ADS_TO_REPLACE_1 JQuery Tutorials Thanks
use of splitpane
use of splitpane  using JSplitPane split pane in three part. 1st in textField 2nd label and 3rd description. in textField we enter the primary key in textField than it show its all two part as label(image) and description of user
use of ejb 3.0
use of ejb 3.0  what is use of ejb 3.0
What is the use of DESC in SQL?
What is the use of DESC in SQL?  What is the use of DESC in SQL
What is the use of friend function?
What is the use of friend function?  What is the use of friend function
Use of immediate attribute
Use of immediate attribute  What is the use of immediate attribute
use of return statement
use of return statement  what is the use of return statement
use of object tag
use of object tag  how to use object tag in html
How to use Servlet and Ajax?
How to use Servlet and Ajax?  How to use Servlet and Ajax
use tables to structure forms
use tables to structure forms  How can I use tables to structure forms
use tables to structure forms
use tables to structure forms  How can I use tables to structure forms
use of loops and screenshots
use of loops and screenshots  1.how to use loops in netbeans? 2.how to draw a correct screenshot
use ajaxtag in Struts1.3
use ajaxtag in Struts1.3  How can use ajax tag library in jsp file in struts 1.3
How to use AT Commands with J2ME?
How to use AT Commands with J2ME?  How to use AT Commands with J2ME? Thank you for your answer
Use javax.servlet.http.HttpServletResponse object
Use javax.servlet.http.HttpServletResponse object  How do use javax.servlet.http.HttpServletResponse object to return Text data and Binary data
What is use of a abstract variable?
What is use of a abstract variable?   Hi, What is use of a abstract variable? thanks
What is use of a abstract variable?
What is use of a abstract variable?   Hi, What is use of a abstract variable? thanks
ModuleNotFoundError: No module named 'use'
ModuleNotFoundError: No module named 'use'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'use' How to remove the ModuleNotFoundError: No module named 'use' error
ModuleNotFoundError: No module named 'use'
ModuleNotFoundError: No module named 'use'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'use' How to remove the ModuleNotFoundError: No module named 'use' error
how to use calender in php
how to use calender in php  how to put calender in php
how to use mouse pressed
how to use mouse pressed   to action mouse clicked
use of ActionMapping in validate()
use of ActionMapping in validate()  why do we pass actionmapping in validate(ActionMapping mapping,HttpServletRequest) even we don't use actionmapping in that method
What is the use of Bluetooth technology
What is the use of Bluetooth technology  What is the use of Bluetooth technology?   Bluetooth technology is used for Wireless communication between equipment's
What is the use of Java?
What is the use of Java?  Hi, What is the use of Java programming Language? How Java is useful for creating applications? Thanks   Java.... You can check more details at What is the use of java?. Thanks
SQL Use
SQL Use       SQL Use..._TO_REPLACE_1 The Tutorial illustrate an example from 'SQL Use'. To understand and grasp the 'SQL Use' we create a database 'komal' using create
Use of CASCADE CONSTRAINTS
Use of CASCADE CONSTRAINTS  hii, What is the use of CASCADE CONSTRAINTS?   hello,,ADS_TO_REPLACE_1 CASCADE CONSTRAINTS describes about the parent-child relationship between tables
what is use of push in javascript
what is use of push in javascript  HI, What is push method is JavaScript? I want to know its use with example. What is use of push in javascript.... You can use the push method to add data into existing array. Check example
Use javascript loops..
Use javascript loops..  Write a Javascript code to create a redirection script based on day of the week
use of package concepts
use of package concepts  i m getting error when i use .* method to access all package files. when i use this through another method like... want to use packagename.* methhod. please solve the problem. i just start
how to use button in array
how to use button in array  plz tell me how to code for button in array
what is use of push in javascript
what is use of push in javascript  HI, What is push method is JavaScript? I want to know its use with example. What is use of push in javascript.... You can use the push method to add data into existing array. Check example
Use of FTPClient
In this section we will discuss about use of FTPClient class with example
How to Use Collections
How to Use Collections  how to use ArrayList and HashMaps in case of user defined class  Hi Friend, Please visit the following links: http://www.roseindia.net/java/jdk6/ http://www.roseindia.net/javacodeexamples
What is the use of CASCADE CONSTRAINTS?
What is the use of CASCADE CONSTRAINTS?   What is the use of CASCADE CONSTRAINTS?   Hi, The CASCADE CONSTRAINTS clause drops all referencial integrity constraints that refer to the primary and unique keys defined
how to use an editable combobox
how to use an editable combobox   Hello Everyone!!!!!!!! I have a jcombo box with certain values and i want to use it as an editable that means when user will type something in combobox, according to that text only matching item
What is the use of Hibernate is used?
What is the use of Hibernate is used?  Hi, What is the use of the Hibernate framework? Thanks   Hello, Hibernate is the ORM framework which is used for saving, retrieving and querying the data from Java program
how to use JOptionPane.YES_NO_OPTION
how to use JOptionPane.YES_NO_OPTION  As i said earliar i am making... to use JOptionPane.YESNOOPTION so that i can give user choice of yes or no before logging out finally.. i also thinking how to use the input (yes or no ) given
Use JDBC to connect Microsoft Access
Use JDBC to connect Microsoft Access  How to use JDBC to connect Microsoft Access
how to use image tag in jsp
how to use image tag in jsp  How to use image tag in JSP
how to use marathi font in swing?
how to use marathi font in swing?  I want to use marathi language on labels,buttons
How to use Hibernate get sessionfactory?
How to use Hibernate get sessionfactory?  Hi, How to use hibernate get sessionfactory? Thanks
What is the use of DBCC commands?
What is the use of DBCC commands?  What is the use of DBCC commands?   Hi, DBCC stands for database consistency checker. We use these commands to check the consistency of the databases, i.e., maintenance, validation
use of plugins - Swing AWT
use of plugins  hi dear i m making a project on java swing .i needed a plugins for search buttons........  https://swingexplorer.dev.java.net/tips.html Thanks

Ads