Multithreading Interview Questions in Java for Freshers What are the benefits of using Multithreading? 2



Yüklə 0,82 Mb.
Pdf görüntüsü
səhifə19/20
tarix13.12.2023
ölçüsü0,82 Mb.
#176388
1   ...   12   13   14   15   16   17   18   19   20
Threads

Task
implements 
Runnable
{
public void 
run
() {
try {
Long duration = (long) (Math.random() * 
20
);
System.out.println(
"Running Task!"
);
TimeUnit.SECONDS.sleep(duration);
catch (InterruptedException ex) {
ex.printStackTrace();
}
}
}
}


Multithreading Interview Questions
39. What will happen if we don’t override the thread class run()
method?
Nothing will happen as such if we don’t override the run() method. The compiler will
not show any error. It will execute the run() method of thread class and we will just
don’t get any output because the run() method is with an empty implementation. 
Example:
class 
MyThread
extends 
Thread
{
//don't override run() method 
}
public class 
DontOverrideRun
{
public static void 
main
(String[] args) {
System.out.println(
"Started Main."
);
MyThread thread1=new MyThread();
thread1.start();
System.out.println(
"Ended Main."
);
}

Output: 
Started Main.
Ended Main.
40. What is the lock interface? Why is it better to use a lock
interface rather than a synchronized block.?
Lock interface was introduced in Java 1.5 and is generally used as a synchronization
mechanism to provide important operations for blocking.
Advantages of using Lock interface over Synchronization block: 
Page 34
© Copyright by Interviewbit


Multithreading Interview Questions
Methods of Lock interface i.e., Lock() and Unlock() can be called in different
methods. It is the main advantage of a lock interface over a synchronized block
because the synchronized block is fully contained in a single method.
Lock interface is more flexible and makes sure that the longest waiting thread
gets a fair chance for execution, unlike the synchronization block.

Yüklə 0,82 Mb.

Dostları ilə paylaş:
1   ...   12   13   14   15   16   17   18   19   20




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin