public class Sample extends Panel {
// Constructor
public Sample() throws IOException {
/* JobOne and JobTwo need to be implemented using Thread at same time */
JobOne{
//statements
}
JobTwo{
//statements
}
}
public static void main(String[] args) throws IOException {
new Sample();
}
}
How to perform this, if need these things to be implemented inside the constructor?