We can create an object of a class using the new operator
public class Util {
public static void main(String[] args) {
Thread t = new Thread();
}
}
Java source code examplesJava source code samples. Java code examples. |
|
We can create an object of a class using the new operator
public class Util {
public static void main(String[] args) {
Thread t = new Thread();
}
}
Tags: General
Tags: General