php    php100   android
当前位置:首页 » java.lang包 »

Java.lang.Package.getSpecificationTitle()方法实例

评论  编辑

描述

The java.lang.Package.getSpecificationTitle() method returns the title of the specification that this package implements.

声明

Following is the declaration for java.lang.Package.getSpecificationTitle() method

public String getSpecificationTitle()

参数

  • NA

返回值

This method returns the specification title, null is returned if it is not known.

异常

  • NA

实例一

编辑 +分享实例

以下例子将告诉你如何使用 lang.Object.getSpecificationTitle() method.

package gitbook.net;

public class PackageDemo {

   public static void main(String[] args) {

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

      // print the specification title for this package
      System.out.println("" + pack.getSpecificationTitle());

   }
}

编译和执行以上程序,将得到以下的结果:

Java Platform API Specification

贡献/合作者

正在开放中...
 

评论(条)

  • 还没有评论!