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.