Skip to main content

Socket (TCP & UDP) communication in Java

Socket communication in Java enables communication between two endpoints over a network. There are two main types of sockets: TCP sockets and UDP sockets. Let's explain both types with examples: TCP Socket Communication: 1. **Server Side**:    - The server creates a `ServerSocket` object to listen for incoming connections on a specific port.    - When a client connects, the server accepts the connection and creates a `Socket` object to communicate with the client.    - The server reads from and writes to the socket's input and output streams to communicate with the client. import java.io.*; import java.net.*; public class TCPServer {     public static void main(String[] args) throws IOException {         ServerSocket serverSocket = new ServerSocket(12345);         System.out.println("Server started. Waiting for client...");         Socket clientSocket = serverSocket.accept();         System.out.println("Client connected.");         BufferedReader in = new Bu

New Operator in Java

 New Operator in Java

In Java, the `new` operator is used to create an instance of a class or to allocate memory for an array. It is a fundamental operator and plays a crucial role in the object-creation process. Let's explore how the `new` operator works in different contexts.


Creating Objects

The primary use of the `new` operator is to create objects by invoking a class constructor. The general syntax is as follows:


ClassName objectReference = new ClassName();


Here, `ClassName` is the name of the class, and `objectReference` is a reference variable that will refer to the newly created object.

Example:

// Define a simple class

class MyClass {

    int value;


    MyClass(int value) {

        this.value = value;

    }

}


public class ObjectCreationExample {

    public static void main(String[] args) {

        // Create an instance of MyClass using the new operator

        MyClass myObject = new MyClass(42);


        // Access and print the value

        System.out.println("Object value: " + myObject.value);

    }

}



In this example, the `new MyClass(42)` statement creates a new instance of the `MyClass` class with the specified value, and the reference variable `myObject` is assigned to point to this newly created object.


Allocating Memory for Arrays


The `new` operator is also used to allocate memory for arrays. The syntax for creating an array is as follows:

// For primitive data types

dataType[] arrayReference = new dataType[arraySize];


// For objects

ClassName[] objectArrayReference = new ClassName[arraySize];


Example:

public class ArrayCreationExample {

    public static void main(String[] args) {

        // Create an integer array with size 5

        int[] intArray = new int[5];


        // Create an array of MyClass objects with size 3

        MyClass[] objectArray = new MyClass[3];


        // Access array elements

        intArray[0] = 10;

        objectArray[1] = new MyClass(20);


        System.out.println("Element of intArray at index 0: " + intArray[0]);

        System.out.println("Value of objectArray at index 1: " + objectArray[1].value);

    }

}


Here, `intArray` is an integer array, and `objectArray` is an array of `MyClass` objects. The `new int[5]` and `new MyClass[3]` expressions allocate memory for these arrays.


In summary, the `new` operator is a fundamental part of Java's memory allocation and object creation process. It is essential for creating instances of classes and allocating memory for arrays, enabling dynamic and flexible programming in Java.

Comments

Popular posts from this blog

Method Overloading in Java

Method Overloading in Java Method Overloading  is a feature in Java that allows a class to have multiple methods with the same name but different parameter lists. The methods can have a different number or types of parameters. The decision on which method to invoke is made by the compiler based on the arguments provided during the method call.  Example: public class Calculator {     // Method to add two integers     public int add(int a, int b) {         return a + b;     }     // Method to add three integers     public int add(int a, int b, int c) {         return a + b + c;     }     // Method to add two doubles     public double add(double a, double b) {         return a + b;     }     // Method to concatenate two strings     public String concatenate(String str1, String str2) {         return str1 + str2;     } } Method Overloading in Action: public class Main {     public static void main(String[] args) {         Calculator calculator = new Calculator();         // Overloaded meth

Java Runtime Environment (JRE)

Definition : Java Runtime Environment (JRE) is a set of software tools and libraries that enables the execution of Java applications. It provides the necessary runtime support for Java programs to run on various devices and platforms. Components of Java Runtime Environment (JRE): Java Virtual Machine (JVM): Definition: The JVM is a crucial component of the JRE responsible for executing Java bytecode. Functionality: It interprets Java bytecode or, in some cases, uses Just-In-Time (JIT) compilation to translate bytecode into native machine code for improved performance. Importance: JVM abstracts the underlying hardware, allowing Java programs to be platform-independent. Class Libraries: Definition: JRE includes a set of precompiled classes and methods that Java applications can utilize. Functionality: These classes cover a wide range of functionalities, from basic data structures to networking. Importance: Class libraries provide a foundation for developers, offering reusable code