Skip to content

Instantly share code, notes, and snippets.

View saurav-bhagat's full-sized avatar
🏠
Working from home

saurav kumar bhagat saurav-bhagat

🏠
Working from home
View GitHub Profile
@saurav-bhagat
saurav-bhagat / ThreadDemo1.java
Created April 8, 2019 02:14
All basic Thread operations in java with example and for other a basic notes in comment.
/*
A java Program in which one thread will calculate factorial and other will check primarility.
*/
import java.util.*;
import java.lang.Thread;
class FactorialThread extends Thread{
private int n;