Java Core
Java Core
Its a way of setting value for an OBJ,ex = Al3 obj = new Al3(3,9); we
just gav parameters
*****FOR ATT/METHDS
*****FOR CLASS
***************PACKAGES
***************INNER CLASSES
TYPES;
1)Private inner class=If u try to access a private inner class from an outside class, an error occurs
2)Static inner class=An inner class can also be static, which means that u can access it without creating an OBJ of the outer class
************INTERFACE
Its a static class i.e it holds all methds without body(as they all are
static from inside)
interface Animal {
*******************ENUMS
switch(myVar) {
}}}
2)We can use it in for each loop using values() methd
Main(){
********************TIME IN JAVA
}}
Other classes;
******************ARRAYLIST
We can change its size later as well after defining unlike an array.
********************HASHMAPS
Int it things go upside down with a logic similar to 2D array. But with key/value concept
capitalCities.put("Engln", "London");capitalCities.get("Engln");capitalCities.remove("Engln");
capitalCities.clear(); capitalCities.size();
******************HASHSETS
**************************ITERATOR
An Iterator is an OBJ that can be used to loop through collections
Note: Trying to remove items using a for loop or a for-each loop would not work correctly because the collection is changing size at
the sam time that the code is trying to loop
cars.add("Volvo");cars.add("BMW");cars.add("Ford");cars.add("Mazda");
Iterator<Integer> it = numbers.iterator();
while(it.hasNext()) { i = it.next();
System.out.println(numbers);
*********************EXCEPTIONS(TRY N CATCH)
*****************FILE HNLING
CREARTING A FILE
WRITING TO A FILE
myWriter.close();
try {
while (myReader.hasNextLine()) {
System.out.println(data);
myReader.close();
if (myObj.delete()) {
int c ;
try{
BELOW SHOWS THAT WE NEED TO USE THE THREAD OBJ TO INITIALIZE A THREAD
}
main(){
MyThread thread1 = new MyThread(name "Thread1 "); thread1.t.start();
MyThread thread2 = new MyThread(name "Thread2"); thread2.t.start();
MyThread thread3 = new MyThread(name "Thread3"); thread3.t.start();
}
isAlive() n join()
class MyThread implements Runnable{
String name;
Thread t;
MyThread(String name){
this.name=name;
t = new Thread(target this, name );
}
public void run(){ // this will run when MyThread is called
try { for(int i =5;i>0;i--) System.out.println(i);
Thread.sleep(mills 1000)}
catch(InterreptedException e){ System.out.println(e);}
}
main(){
MyThread thread1 = new MyThread(name "Thread1 ");
MyThread thread2 = new MyThread(name "Thread2");
MyThread thread3 = new MyThread(name "Thread3");
thread1.t.isAlive(); /// WILL PRINT FALSE
thread1.t.start()
try{thread1.t.join()}
catch(InterreptedException e){ System.out.println(e);}
thread1.t.isAlive(); // WILL PRINT TRUE
thread2.t.start(); // so what join does is is will let thread1 run
thread3.t.start(); // completely n then thread2 will come in action
}
Synchronized Threads
THREADS THEORY
public static void main(String[] args){ MyThread newobj = new MyThread(); newobj.start(); }
public static void main (String[] args){ Thread t = new Thread(new MyThread()); t.start();}
MUTLITHREADING –
class Printer{
Printer pRef;
MyThread(Printer p){
pRef =p;
}
@Override
public void run() {
pRef.printDocument(10, "Alice");
}
}
class UrThread extends Thread{
Printer pRef;
UrThread(Printer p){
pRef =p;
}
@Override
public void run() {
synchronized(pRef) {
pRef.printDocument(10, "Chris");
}
}
Main()=
System.out.println("START");
Now in main we made a Printer OBJ n OBJs of other two classes.While making so we
gave in the Printer OBJ as the parameter for the constructor of those two classes.
Then we implemented start() methd for those two OBJs of thread class to make them
run but we got jumbled output so we used something called join() methd // NOTE;
use try catch for join(),sleep() n so on // This will help in synchronization or
else go to the Printer class n put ‘ synchronized ‘ that will do sam.
THEAD POOL –
LAMBA EXPRESSION IN JAVA
FUNTIONALAL INTERFACE
MAIN=
LAMBA PARAMETERS
interface cab2 {
double bookCab(String source,String destination);
MAIN=
STATIC
OUTSIDE MAIN =
interface calculator{
void add (int a ,int b);
}
class calc{
public static void addsomething(int a,int b){
System.out.println(a+b);
}
interface Messanger{
Message getMessage(String mgs);
}
class Message{
Message(String msg){
System.out.println(msg);
}
}
main=
//Ref to a constructor
Messanger mref = Message::new; //Methd ref
mref.getMessage("sdf");
PARSING XML USING DOM,SAX N StAX PARSER IN JAVA
XML =
In above we made a file obj first giving the path inside the
constructor. Then we made a methd cuz that’s a good programming
practise n also bcuz of that we can use that methd next time for
other file obj as well. Now in methd we supplied the file OBJ as
parameter as we wonna work with that n we wrote a try catch thing
cuz this process gives errors by def in java. Now we made an obj of
PrintWriter out of try catch as we would have to use it in finally as
well(since we wonna close the file ). In try we used this obj n
passed the methd parameter into the PrintWriter constructor(which
is gonna work on the original file we wonna workl with). El fin.
This is reading from a file.We use scanner.
SERIALIZATION N DESERIALIZATION
Part 1 expl
Part 2 explanation
class generic<T1,T2>{
int val;
T1 a;
T2 b;
generic(T1 a,T2 b){
this.a=a;
this.b=b;
System.out.println(a +" " + b);
}
MAIN =
2) explicit;
EX double a 34.34; int b (int) a; means double got converted into int
TYPE WRAPPERS
AUTOBOXING
ENUMS
Its a special type of class that lets u make a new data type n then u
can decide what data that data type will take(we don’t have to deal
with new keyword) enums can inherit n extends.
enum Days{
Monday, Tuedays, WED // they are static n final n constant by default}
MAIN =
2] xml tags are case sensitive 3] close tag n open tag bt exist.
//RECURSION
// ITS A METHD THAT CALLS ITSELF
/* PUBLIC STATIC LONG FACT(INT A) {
IF(A<=1)
RETURN 1;
ELSE RETURN A*FACT(A-1);
}
COLLECTION ;
ITERATOR
editlist(la,lb);
LINKED LIST
/* //ARRAY TO LIST N
EITHER
// METHD addAll()
// adds one collection data into other collection
// this is ognan add elements of stuff to list2
//Collections.addAll(list2, stuff);
//FREQUENCY
//frequency gives output of how many times an element appear in
list
// Collections.frequency(list, "FI");
// DISJOINT
// boolean t = Collections.disjoint(list, lst);
// True is no items in common
// False if items in common
*/
STACKS
q.offer("sd");
q.offer("asd");
q.offer("gd");
System.out.printf("%s", q); // prints whole queue at once
// 1) HashSet
String[] stuff = {"a","s","a"};
List<String> li = Arrays.asList(stuff); // we made array into list n got it
System.out.printf("%s", li); // print
RNOM CLASS
MAIN=
HASHMAPS = KEY/DATA