java.lang.Package.getSpecificationVendor()方法範例


java.lang.Package.getSpecificationVendor() 方法返回的組織,供應商或公司擁有並維護實現此包的類的規範的名稱。

宣告

以下是java.lang.Package.getSpecificationVendor()方法的宣告

public String getSpecificationVendor()

引數

  • NA

返回值

此方法返回規範廠商,如果目前還不知道,則返回null。

異常

  • NA

例子

下面的例子顯示lang.Object.getSpecificationVendor()方法的使用。

package com.yiibai;

public class PackageDemo {

   public static void main(String[] args) {

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

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

   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Sun Microsystems, Inc.