Java Features

Java has following buzzwords Simple Java syntax is very much similar to C++ No pointer concept to make it simpler and auto garbage collection (no need to worry about deleting un used objects). Object Oriented Object-oriented programming (OOP) is a programming paradigm. This represents the concept of ” objects ” that have data fields (attributes […]

Share this article on

Heap and Stack

Stack and Heap are the main areas of memory in Java. Before Understanding Stack and Heap , Lets understand below terms in Java. Local Variables : variables which are declared inside a method or passed as a method parameter. Instance Variables : Variables which are declared directly inside a class Example package com.kb.memorymanagement;   public […]

Share this article on
< Previous