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

貢獻/合作者

正在開放中...
 

評論(條)

  • 還冇有評論!