how to create thread in java?

Answer Posted / vijay tandel

Thread can be created by

1. Extending Thread Class
2. implementing Runnable interface

The second approach is better as if you want to use multiple
inheritance, interface is better option.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the three parts of a simple empty class?

1456


What is the significance of classes in oop?

587


This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.

1635


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2006


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2029






What is cohesion in oop?

621


What does and I oop mean?

612


What is a function in oop?

629


What is inheritance and how many types of inheritance?

614


What is polymorphism and why is it important?

556


Why do we use polymorphism?

573


Explain the advantages of inheritance.

670


Can static class have constructor?

582


What is difference between oop and pop?

611


Can you name some types of inheritance?

639