| Author |
core java
|
Korada Rajshekar
Greenhorn
Joined: Jul 21, 2011
Posts: 3
|
|
|
If we have a instance variable like int i=10 and for that class we have two objects if we change the value of i using first object then how can it notify to second object that the value of 'i' is changed....Without using Threads concept....just using normal objects
|
 |
Seetharaman Venkatasamy
Ranch Hand
Joined: Jan 28, 2008
Posts: 5575
|
|
introduce a method which takes the same object as an argument. now test the argument object's instance field and perform a operation..something like below:
|
 |
Seetharaman Venkatasamy
Ranch Hand
Joined: Jan 28, 2008
Posts: 5575
|
|
|
Please, UseAMeaningfulSubjectLine .
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19214
|
|
I'd probably add support for PropertyChangeListener, through PropertyChangeSupport:
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: core java
|
|
|