Like the example code like follows.
I'm going to using a thread pool to run the object of TestRunnable in period.
Should I declare the variable total as volatile?
public class TestRunnable implements Runnable {
private int total;
@Override
public void run() {
if (total > 10) {
return;
} else {
total += 1;
System.out.print("Run in times: " + total);
}
}
}
Assuming the fact, that your variable is declared as
(Not static)
It will not be shared between multiple threads (As long as you keep creating new instance for each submitted thread), so there is no need to declare it as volatile.
If you do use the same instance multiple times - then you should consider using AtomicInteger instead of regular int, since operation
or
Is not an atomic operation, which might lead to some unexpected results in multithreaded env.