A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to get the package name of a class
Q:

Java program to get the package name of a class

0

Java program to get the package name of a class

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to get the package name of a class is given below. The given program is compiled and executed successfully.

// Java program to get the package name 
// of a class

public class Main {
  public static void main(String[] args) throws ClassNotFoundException {
    Class cls1 = Class.forName("java.util.Set");
    Class cls2 = Class.forName("java.lang.String");

    System.out.println("Package names: ");
    System.out.println(cls1.getPackage());
    System.out.println(cls2.getPackage());
  }
}

Output:

Package names: 
package java.util
package java.lang

Explanation:

In the above program, we created a public class Main that contains a main() method. The main() method is the entry point for the program. In the main() method, we get the package name of specified classes using the getPackage() method and printed the result.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now