Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Android java/SoftGen/bin/Abstraction/AbstractAnimal.class
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.tecmax.methodExamples;

public class arraylist {
public class hello {

}

This file was deleted.

19 changes: 0 additions & 19 deletions TecmaxPractise/src/com/tecmax/methodExamples/swapstr.java

This file was deleted.

5 changes: 0 additions & 5 deletions TecmaxPractise/src/com/tecmax/methodExamples/swapstring.java

This file was deleted.

35 changes: 35 additions & 0 deletions TecmaxPractise/src/com/tecmax/methodExamples/thread2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package com.tecmax.methodExamples;

public class thread2 extends Thread {

public void run()
{
try
{

System.out.println ("Thread " +
Thread.currentThread().getId() +
" is running");

}
catch (Exception e)
{

System.out.println ("Exception is caught");
}
}
}


public class thread3
{
public static void main(String[] args)
{
int n =8;
for (int i=0; i<8; i++)
{
thread2 object = new thread2();
object.start();
}
}
}