Threads
Hi everyone..
The question is about threads. i am posting two programs and their
corresponding outputs below this. you can try to run it both. how many
times i run them, the output is same. What i found in them is, if i
extend Thread, the instance variables are shared between the threads.
but when i am implementing Runnable, it does not happen. can anyone
explain this ?
thanks in advance
sarath
public class AccountDanger implements Runnable{
private Account acct = new Account();
/** Creates a new instance of AccountDanger */
public AccountDanger() {
}
public void run(){
for(int x= 0; x < 5 ; x++){
makeWithdrawal(10);
if(acct.getBalance() < 0){
System.out.println("account is overDrawn");
}
}
}
private void makeWithdrawal(int amt){
if(acct.getBalance() >= amt){
System.out.println(Thread.currentThread().getName()+" is
going to withdraw");
try{
Thread.sleep(500);
}catch(InterruptedException ex){
}
acct.withdraw(amt);
System.out.println(Thread.currentThread().getName()+"
completes the withdrawal");
}else{
System.out.println("Not enough in account for
"+Thread.currentThread().getName()+ " to withdraw "+acct.getBalance());
}
}
public static void main(String args[]){
AccountDanger r = new AccountDanger();
Thread one = new Thread(r);
Thread two = new Thread(r);
one.setName("Fred");
two.setName("Lucy");
one.start();
two.start();
}
}
class Account {
private int balance = 50;
public int getBalance(){
return balance;
}
public void withdraw(int amount){
balance = balance - amount;
}
}
output is,
Fred is going to withdraw
Lucy is going to withdraw
Fred completes the withdrawal
Fred is going to withdraw
Lucy completes the withdrawal
Lucy is going to withdraw
Fred completes the withdrawal
Fred is going to withdraw
Lucy completes the withdrawal
Lucy is going to withdraw
Fred completes the withdrawal
Not enough in account for Fred to withdraw 0
Not enough in account for Fred to withdraw 0
Lucy completes the withdrawal
account is overDrawn
Not enough in account for Lucy to withdraw -10
account is overDrawn
Not enough in account for Lucy to withdraw -10
account is overDrawn
/*
* AccountDanger.java
*
* Created on May 19, 2006, 5:13 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author root
*/
public class AccountDanger extends Thread{
private Account acct = new Account();
/** Creates a new instance of AccountDanger */
public AccountDanger() {
}
public void run(){
for(int x= 0; x < 5 ; x++){
makeWithdrawal(10);
if(acct.getBalance() < 0){
System.out.println("account is overDrawn");
}
}
}
private void makeWithdrawal(int amt){
if(acct.getBalance() >= amt){
System.out.println(Thread.currentThread().getName()+" is
going to withdraw");
try{
Thread.sleep(500);
}catch(InterruptedException ex){
}
acct.withdraw(amt);
System.out.println(Thread.currentThread().getName()+"
completes the withdrawal");
}else{
System.out.println("Not enough in account for
"+Thread.currentThread().getName()+ " to withdraw "+acct.getBalance());
}
}
public static void main(String args[]){
AccountDanger one = new AccountDanger();
AccountDanger two = new AccountDanger();
//Thread one = new Thread(r);
//Thread two = new Thread(r);
one.setName("Fred");
two.setName("Lucy");
one.start();
two.start();
}
}
class Account {
private int balance = 50;
public int getBalance(){
return balance;
}
public void withdraw(int amount){
balance = balance - amount;
}
}
output :
Fred is going to withdraw
Lucy is going to withdraw
Fred completes the withdrawal
Fred is going to withdraw
Lucy completes the withdrawal
Lucy is going to withdraw
Fred completes the withdrawal
Fred is going to withdraw
Lucy completes the withdrawal
Lucy is going to withdraw
Fred completes the withdrawal
Fred is going to withdraw
Lucy completes the withdrawal
Lucy is going to withdraw
Fred completes the withdrawal
Fred is going to withdraw
Lucy completes the withdrawal
Lucy is going to withdraw
Fred completes the withdrawal
Lucy completes the withdrawal