Skip to main content

Understanding Programming Methodologies: A Comprehensive Guide

Understanding Programming Methodologies: A Comprehensive Guide Introduction Programming methodologies define structured approaches to writing code, improving efficiency, maintainability, and scalability. Different methodologies provide distinct ways of thinking about problem-solving, organizing logic, and structuring applications. This blog explores various programming methodologies, their advantages, drawbacks, applications, and best use cases. 1. Procedural Programming Procedural programming follows a step-by-step approach where code is structured as procedures or functions. Characteristics: Based on the concept of procedure calls. Follows a linear, top-down execution model. Uses variables, loops, and control structures. Languages: C, Pascal, Fortran Sample Code (C): #include <stdio.h> void greet() { printf("Hello, World!\n"); } int main() { greet(); return 0; } Applications: Embedded systems (e.g., firmware, microcontrollers) Operating systems (e.g., Li...

Java finalize() Method

Java finalize() Method

Overview:


- Purpose: The `finalize()` method in Java is used for performing cleanup operations or releasing resources before an object is garbage-collected.


- Invocation: The `finalize()` method is automatically invoked by the garbage collector just before an object is reclaimed.


- Class Involvement: The `finalize()` method is defined in the `Object` class, and any class can override it to customize cleanup actions.

Example:

public class ResourceHolder {


    // Some resource or setup in the constructor

    public ResourceHolder() {

        System.out.println("ResourceHolder object created");

    }


    // Cleanup or resource release in the finalize method

    @Override

    protected void finalize() throws Throwable {

        try {

            // Cleanup operations

            System.out.println("ResourceHolder object being finalized");

        } finally {

            // Call the finalize method of the superclass

            super.finalize();

        }

    }


    public static void main(String[] args) {

        // Creating an instance of ResourceHolder

        ResourceHolder resourceObj = new ResourceHolder();


        // Assigning reference to null, making it eligible for garbage collection

        resourceObj = null;


        // Explicitly triggering garbage collection (for demonstration purposes)

        System.gc();

    }

}


Explanation:


1. Object Creation:

   - An instance of the `ResourceHolder` class is created using the constructor.


2. Reference Assignment:

   - The reference `resourceObj` is set to `null`, making the object eligible for garbage collection.


3. Garbage Collection:

   - The `System.gc()` method is called to suggest garbage collection (for demonstration purposes). Note that calling `System.gc()` doesn't guarantee immediate garbage collection; it's a suggestion.


4. Finalization:

   - When the garbage collector determines that there are no more references to the object, it invokes the `finalize()` method.

   - The `finalize()` method contains cleanup operations or resource release logic specific to the `ResourceHolder` class.


Important Notes:

- Explicit Invocation: It's generally not recommended to rely on the explicit invocation of `finalize()` or use it for critical resource management.

  

- Resource Management: For better resource management, consider using other mechanisms such as the `try-with-resources` statement introduced in Java 7.


- Deprecation Warning: The `finalize()` method is not guaranteed to be called promptly or at all. It may be deprecated in future Java versions.


Remember: While understanding `finalize()` can be useful, modern Java applications often use more reliable approaches for resource management and cleanup.



-------------------------------------------------------------


The `finalize()` method in Java is a special method provided by the Java runtime environment for garbage collection. It belongs to the `Object` class and is called by the garbage collector before reclaiming the memory occupied by an object that is no longer reachable or has no more references to it.


Here are some key points about the `finalize()` method:


1. Purpose: The `finalize()` method is used to perform cleanup or resource release operations before an object is garbage collected.


2. Signature: It has the following signature:

 

   protected void finalize() throws Throwable


3. Visibility: The `finalize()` method is `protected`, which means it is accessible only within its own class and subclasses.


4. Invocation: The `finalize()` method is invoked by the garbage collector when it determines that there are no more references to the object. However, it is important to note that there are no guarantees on when or if the `finalize()` method will be called.


5. Usage: While the `finalize()` method can be overridden in a class to provide custom cleanup logic, it is generally not recommended to rely on it for critical cleanup operations. It is better to explicitly release resources using `try-with-resources` blocks or by implementing the `AutoCloseable` interface.


6. Performance: Overriding `finalize()` can have performance implications because the garbage collector has to spend additional time invoking it for each eligible object.


Here's an example illustrating the usage of the `finalize()` method:



public class Resource implements AutoCloseable {

    private String name;


    public Resource(String name) {

        this.name = name;

    }


    @Override

    protected void finalize() throws Throwable {

        try {

            // Cleanup or resource release operations

            System.out.println("Finalizing resource: " + name);

        } finally {

            super.finalize();

        }

    }


    @Override

    public void close() {

        // Explicit resource release method

        System.out.println("Closing resource: " + name);

    }


    public static void main(String[] args) {

        // Creating a resource object

        Resource resource = new Resource("TestResource");


        // Discarding the reference

        resource = null;


        // Triggering garbage collection

        System.gc(); // Note: Requesting garbage collection, but not guaranteed to invoke finalize()

    }

}



In this example, the `finalize()` method is overridden to perform resource cleanup when the object is garbage collected. However, it is also advisable to use the `close()` method for explicit resource release, which can be called directly by the application. Additionally, calling `System.gc()` requests garbage collection but does not guarantee that the `finalize()` method will be invoked.

Comments

Popular posts from this blog

Iterators and Collections

In Java, iterators are objects that allow for sequential access to the elements of a collection. The Java Collections Framework provides the Iterator interface, which defines methods for iterating over collections such as lists, sets, and maps. Here's an explanation of iterators and their relationship with collections, along with examples: Iterator Interface: The Iterator interface provides methods to iterate over the elements of a collection sequentially: - boolean hasNext(): Returns true if there are more elements to iterate over. - E next(): Returns the next element in the iteration. - void remove():  Removes the last element returned by `next()` from the underlying collection (optional operation). Collections and Iterators: 1. Collection Interface:    - Collections represent groups of objects, such as lists, sets, and maps.    - They provide methods for adding, removing, and accessing elements. 2. Iterator Usage:    - Collections implement the Iter...

The Collection Interface.

  The Collection Interface. 

OracleJDK vs OpenJDK

Oracle JDK (Java Development Kit): Oracle JDK is the official reference implementation of the Java Platform, Standard Edition (Java SE). It included the JRE along with development tools. OpenJDK: An open-source alternative to Oracle JDK, OpenJDK is a community-driven project. It provides a free and open-source implementation of the Java Platform, and many other JDKs, including Oracle JDK, are derived from OpenJDK. Below is a simple table highlighting some key points of comparison between Oracle JDK and OpenJDK: Feature Oracle JDK OpenJDK Vendor Oracle Corporation OpenJDK Community Licensing Commercial (Paid) with Oracle Binary Code License Agreement Open Source (GNU General Public License, version 2, with the Classpath Exception) Support Commercial support available with Oracle Support subscription Community support, may have commercial support options from other vendors Updates and Patches Regular updates with security patches provided by Oracle Updates and patches contributed by the ...