Java Essentials: Arrays, Memory, and Core Programming Concepts

@Harsh
4 min readSep 26, 2024

--

As I progress through my Java learning journey, I’ve explored a wide range of foundational and advanced concepts. From understanding the basic elements of programming languages to delving deeper into typecasting, polymorphism, arrays, and memory allocation, Java continues to prove its versatility and strength as a language. In this article, I’ll cover a series of important Java topics, including data types, pre- and post-increment operators, logical operators, functions, and how memory is managed for primitive data types and arrays.

1. What is a Programming Language?

A programming language is a formal way for humans to communicate instructions to a computer. It defines rules for structuring code that a computer can understand and execute. Programming languages allow us to build software ranging from simple tools to complex applications, and Java is one of the most widely used for its platform independence and object-oriented structure.

2. What is Java?

Java is a high-level, object-oriented programming language developed by Sun Microsystems (now owned by Oracle) in 1995. It follows the principle of Write Once, Run Anywhere (WORA), meaning code compiled in Java can run on any device with a Java Virtual Machine (JVM). Java is used to create everything from mobile apps to web applications, thanks to its ease of use, security, and portability.

3. Typecasting in Java

Typecasting allows converting a variable of one data type into another.

public class Main {
public static void main(String[] args) {
int x = 65;
System.out.println(x);
System.out.println((char) x); //TypeCasting
}
}

4. Polymorphism and the + Operator

Polymorphism is a key feature in Object-Oriented Programming (OOP), allowing the same operation or method to behave differently depending on the data types involved. A great example is the + operator in Java:

  • With numbers, the + operator performs arithmetic addition:
int a = 5;
int b = 10;
int sum = a + b; // Output: 15
  • With strings, the + operator concatenates the strings:
String firstName = "John";
String lastName = "Doe";
String fullName = firstName + " " + lastName; // Output: "John Doe"

This dual behavior demonstrates the polymorphic nature of the + operator in Java.

5. Data Types and the getClass() Method

Java provides both primitive and reference data types. Primitives include types like int, double, boolean, and char. Reference types refer to objects such as strings, arrays, or custom objects.

To determine the type of an object, Java provides the getClass() method. For example:

int x = 65;
System.out.println(x);
System.out.println((char) x); //TypeCasting
System.out.println(((Object) x).getClass()); //This will return the data type class of the variable x

6. Type Coercion

Type coercion refers to automatic type conversion when performing operations with different data types. In Java, smaller data types are automatically promoted to larger ones to prevent data loss.

int y = 20;
byte z = 10;
System.out.println(y+z); //The result is of int data type

7. Standard Input Using the Scanner Class

Java provides the Scanner class to read input from the user. The Scanner can take input of different types, including strings and numbers.

import java.util.Scanner;

Scanner scan = new Scanner(System.in);
System.out.print("Enter your name: ");
String name = scan.nextLine();
System.out.println("Hello, " + name + "!");

8. Arrays and Memory Allocation in Java

An array is a collection of elements of the same type, stored in contiguous memory. Java arrays are objects, so they are allocated in heap memory.

int[] numbers = new int[5]; // Allocates memory for 5 integers in heap memory

Memory Allocation:

  • Primitive Data Types: Stored in stack memory. For example, an int takes 4 bytes of space.
  • Heap Memory: Arrays and objects are stored in heap memory. The reference to the array (or object) is stored in the stack, but the actual array elements reside in the heap.
int a[] = new int[10]; // Heap memory allocation for the array, reference stored in the stack

You can also access the length of an array using .length:

System.out.println("Array length: " + numbers.length);

9. Pre-Increment and Post-Increment Operators

The pre-increment (++) and post-increment (++) operators increase a variable’s value by 1 but behave slightly differently:

  • Pre-Increment: The variable is incremented first, and then the new value is used.
int x = 5;
int y = ++x; // x becomes 6, y is assigned 6
  • Post-Increment: The current value is used first, and then the variable is incremented.
int x = 5;
int y = x++; // y is assigned 5, then x becomes 6

10. Logical Operators

Logical operators are used to create compound conditional statements:

  • AND (&&): Both conditions must be true.
boolean result = (5 > 3) && (8 > 5); // true
  • OR (||): At least one condition must be true.
boolean result = (5 > 3) || (8 < 5); // true
  • NOT (!): Inverts the truth value.
boolean result = !(5 > 3); // false

Conclusion

In my journey through learning Java, I’ve come across essential concepts that are key to mastering the language. From typecasting, arrays, and polymorphism to understanding how memory allocation works for primitive types and arrays, Java’s dynamic and robust features shine through. Additionally, knowing how to manage user input using the Scanner class, work with increment operators. Java continues to prove its versatility as both a beginner-friendly and powerful programming language.

--

--

@Harsh
@Harsh

Written by @Harsh

A devOps engineer from India

No responses yet