在 Java 程序中,packageimport 语句是唯二出现在类定义之外的语句。

以下示例展示了如何使用自建包:

import cn.edu.hbut.entities.employee;

public class test {
    public static void main(String args[]) {
        employee a = new employee(\"王玲\", 3000);
        System.out.println(a.getname());
        System.out.println(a.getsalary());
    }
}

注意: 这段代码使用了 cn.edu.hbut.entities 包中的 employee 类。