BE Java Module - 5
BE Java Module - 5
Syntax:
public class Thread extends Object implements Runnable
Constructors of this class are as follows:
Thread(Runnable target,
Allocates a new Thread object.
String name)
Thread(ThreadGroup group,
Allocates a new Thread object.
Runnable target)
Thread(ThreadGroup group,
Allocates a new Thread object.
String name)
Throws
CloneNotSupportedException as
clone()
a Thread can not be meaningfully
cloned
• We will use currentThread() method to get the name of the current thread.
User can also use setName() method if he/she wants to make names of
thread as per choice for understanding purposes.
• getName() method will be used to get the name of the thread.
The accepted value of priority for a thread is in the range of 1 to 10.
Let us do discuss how to get and set priority of a thread in java.
1. public final int getPriority(): java.lang.Thread.getPriority() method
returns priority of given thread.
2. public final void setPriority(int
newPriority): java.lang.Thread.setPriority() method changes the priority
of thread to the value newPriority. This method throws
IllegalArgumentException if value of parameter newPriority goes beyond
minimum(1) and maximum(10) limit.
Enumerations, Type Wrappers and Autoboxing: Enumerations
(Enumeration Fundamentals, The values() and valueOf() Methods). Type
Wrappers (Character, Boolean, The Numeric Type Wrappers), Autoboxing
(Autoboxing and Methods, Autoboxing/Unboxing Occurs in Expressions,
Autoboxing/Unboxing Boolean and Character Values).
One thing to keep in mind is that, unlike classes, enumerations neither inherit
other classes nor can get extended(i.e become superclass). We can also add
variables, methods, and constructors to it. The main objective of an enum is to
define our own data types(Enumerated Data Types).
enum Color {
RED,
GREEN,
BLUE;
}
Output
RED
2. Declaration inside a class
public class Test {
enum Color {
RED,
GREEN,
BLUE;
}
// Driver method
public static void main(String[] args) {
Color c1 = Color.RED;
System.out.println(c1);
}
}
• The first line inside the enum should be a list of constants and then other
things like methods, variables, and constructors.
• According to Java naming conventions, it is recommended that we name
constant with all capital letters
In Java, the values( ) method can be used to return all values present inside
the enum.
The valueOf() method returns the enum constant of the specified string value
if exists.
Type Wrappers
A Wrapper class in Java is a class whose object wraps or contains primitive data
types. When we create an object to a wrapper class, it contains a field and in this
field, we can store primitive data types. In other words, we can wrap a primitive
value into a wrapper class object
char Character
byte Byte
short Short
int Integer
long Long
float Float
double Double
boolean Boolean
import java.util.ArrayList;
class Autoboxing {
public static void main(String[] args)
{
char ch = 'a';
ArrayList<Integer> arrayList
= new ArrayList<Integer>();
2. Unboxing
It is just the reverse process of autoboxing. Automatically converting an object
of a wrapper class to its corresponding primitive type is known as unboxing. For
example – conversion of Integer to int, Long to long, Double to double, etc.
import java.util.ArrayList;
class Unboxing {
public static void main(String[] args)
{
Character ch = 'a';
ArrayList<Integer> arrayList
= new ArrayList<Integer>();
arrayList.add(24);