Java Package getSpecificationVendor()方法
java.lang.Package.getSpecificationVendor() 方法返回的组织,供应商或公司拥有并维护实现此包的类的规范的名称。
1 语法
public String getSpecificationVendor()
2 参数
无
3 返回值
此方法返回规范厂商,如果目前还不知道,则返回null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Package getSpecificationVendor()方法
*/
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.
热门文章
优秀文章