Skip to content

Instantly share code, notes, and snippets.

View prasath95's full-sized avatar
🏠
Working from home

Prasath prasath95

🏠
Working from home
View GitHub Profile
public class LinkedList {
Node nodeObject;
}
@prasath95
prasath95 / Node.java
Created May 7, 2022 12:21
DSA OOP Representation
public class Node {
int value;
Node nextNode;
}
@prasath95
prasath95 / synchronized java
Created December 8, 2021 17:55
trying to understand the core java
synchronized (MainActivity.this)
{
if(eventCallback!=null)
{
Log.d(TAG, "onCreate: "+"callback triggered ");
eventCallback.showMessage();
}
}