Category Archives: Garbage Collection

Java Verbose Option

Verbose option displays whole information of a java application running. There are three usage types as below :

-verbose:class = print  information about each class loaded.


package com.test;

public class Test {

   public static void main(String[] args) {
      System.out.println("Hello World!");
   }
}