কেন i++
জাভাতে পারমাণবিক না?
জাভাতে আরও গভীর হওয়ার জন্য আমি কতবার থ্রেডে লুপটি কার্যকর করা হয় তা গণনা করার চেষ্টা করেছি।
সুতরাং আমি একটি ব্যবহার
private static int total = 0;
প্রধান ক্লাসে।
আমার দুটি থ্রেড আছে
- থ্রেড 1: মুদ্রণ
System.out.println("Hello from Thread 1!");
- থ্রেড 2: প্রিন্ট
System.out.println("Hello from Thread 2!");
এবং আমি থ্রেড 1 এবং থ্রেড 2 দ্বারা মুদ্রিত রেখাগুলি গণনা করি তবে থ্রেড 1 + থ্রেড 2 এর লাইনগুলি মুদ্রিত আউটগুলির মোট সংখ্যার সাথে মেলে না।
আমার কোডটি এখানে:
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Test {
private static int total = 0;
private static int countT1 = 0;
private static int countT2 = 0;
private boolean run = true;
public Test() {
ExecutorService newCachedThreadPool = Executors.newCachedThreadPool();
newCachedThreadPool.execute(t1);
newCachedThreadPool.execute(t2);
try {
Thread.sleep(1000);
}
catch (InterruptedException ex) {
Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);
}
run = false;
try {
Thread.sleep(1000);
}
catch (InterruptedException ex) {
Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);
}
System.out.println((countT1 + countT2 + " == " + total));
}
private Runnable t1 = new Runnable() {
@Override
public void run() {
while (run) {
total++;
countT1++;
System.out.println("Hello #" + countT1 + " from Thread 2! Total hello: " + total);
}
}
};
private Runnable t2 = new Runnable() {
@Override
public void run() {
while (run) {
total++;
countT2++;
System.out.println("Hello #" + countT2 + " from Thread 2! Total hello: " + total);
}
}
};
public static void main(String[] args) {
new Test();
}
}
AtomicInteger
?