0
What is this mean in java ?
static ExecutorService es = Executors.newFixedThreadPool(2);
7 Answers
+ 2
its a way to create threads.
you can read more about it here:
https://www.google.gr/amp/s/www.journaldev.com/1069/threadpoolexecutor-java-thread-pool-example-executorservice/amp
+ 2
thank you .. but can i ask you .. what about thread i don't know how to use it đ„
+ 2
then you have to read about java threads and parallel programming
+ 1
this is a great tutorial on java multithreading or you can just search online you will find alot of info on how to use threads https://www.tutorialspoint.com/java/java_multithreading.htm
+ 1
TutorialsPoint tutorials are really good for beginning with multiple languages, such as Python 2 and 3, and Java.
0
Start off with a class that extends Thread or, better, implements Runnable. You can find guides in the SoloLearn Java tutorial, or you can just Google "java multithreading."
0
nehal??