Java 包 getSpecificationTitle() 方法



描述

Java 包 getSpecificationTitle() 方法返回此包实现的规范的标题。

声明

以下是 java.lang.Package.getSpecificationTitle() 方法的声明

public String getSpecificationTitle()

参数

返回值

此方法返回规范标题,如果未知则返回 null。

异常

获取 java.lang 包的规范标题示例

以下示例演示了 java.lang.Package.getSpecificationTitle() 方法的用法。在这个程序中,我们创建了一个 Package 变量并为其分配了 java.lang 包对象。然后使用 getSpecificationTitle() 方法打印包的规范标题。

package com.tutorialspoint;

public class PackageDemo {

   public static void main(String[] args) {

      // get the java package
      Package pack = Package.getPackage("java.lang");

      // print the package specification title
      System.out.println(pack.getSpecificationTitle());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

null

获取自定义包的规范标题示例

以下示例演示了 java.lang.Package.getSpecificationTitle() 方法的用法。在这个程序中,我们创建了一个 Package 变量并为其分配了 com.tutorialspoint 包对象。然后使用 getSpecificationTitle() 方法打印包的规范标题。

package com.tutorialspoint;

public class PackageDemo {

   public static void main(String[] args) {

      // get the java package
      Package pack = Package.getPackage("com.tutorialspoint");

      // print the package specification title
      System.out.println(pack.getSpecificationTitle());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

null

获取 java.util 包的规范标题示例

以下示例演示了 java.lang.Package.getSpecificationTitle() 方法的用法。在这个程序中,我们创建了一个 Package 变量并为其分配了 java.util 包对象。然后使用 getSpecificationTitle() 方法打印包的规范标题。

package com.tutorialspoint;

public class PackageDemo {

   public static void main(String[] args) {

      // get the java package
      Package pack = Package.getPackage("java.util");

      // print the package specification title
      System.out.println(pack.getSpecificationTitle());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

null
java_lang_package.htm
广告