Tag Archive: Java

Java Fundamentals

April 29, 2017

Principles of Java Simple Objected-Oriented Robust Methods, functions and properties Code in small chunks – easy to debug Portable High... View Article

Java Introduction

April 28, 2017

How Java was born? Java started in 1991 – when Sun Microsystems began ‘Green Project’ Primary objective: A new portable language... View Article

Singleton snippet (Java)

May 10, 2016

public class singleton { private static singleton obj; private singleton(){ System.out.println("Constructor is called only once."); } public static singleton getInstance(){... View Article