what is use of threads how many ways to create thread
Answer Posted / madhusudhan
use of thread:1.concurrent execution of thread.
2.Program security.
Thread can be create in 2 ways
1.using Thread class
2.using Runnable interface
Example:
//first way of creating thread
class Thread1 extends Thread
{
public void run()
{
for(int i=0;i<1000;i++)
{
System.out.println(hashcode()+":"+i);
}
}
}
//second way of creating thread
class Thread2 implements Runnable
{
public void run()
{
for(int i=1000;i<2000;i++)
{
System.out.println(hashcode()+":"+i);
}
}
}
public class M
{
public static void main(String args[])
{
Thread1 t1=new Thread1();
t1.start();
Thread2 t2=new Thread2();
Thread t=new Thread(t2);
t.start();
}
}
Is This Answer Correct ? | 22 Yes | 1 No |
Post New Answer View All Answers
How are the elements of a gridbaglayout organized in java programming?
What is the abstract class?
What is meant by distributed application? Why are we using that in our application?
Define how destructors are defined in java?
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
What are format specifiers in java?
What are encapsulation, inheritance and polymorphism?
Is arraylist sorted in java?
which class is the wait() method defined in? : Java thread
Does java allow default arguments?
What are JVM.JRE, J2EE, JNI?
What are the restrictions imposed by a Security Manager on Applets?.
How do you empty a list in java?
What is e in java?
What is the difference between integer parseint and integer valueof?