Company、Department、Employee の 3 つのクラスがあります。会社は部門で構成され、部門は従業員で構成されています。かなり基本的です。しかし、各従業員の部門を設定しようとすると、次のエラーが発生します。
- トークン「countingGuru」の構文エラーです。このトークンの後に VariableDeclaratorId が必要です
- トークンの構文エラー、構造体の配置ミス
エラーをグーグルで検索しましたが、何が間違っていたのかまだわかりません。
コードは次のとおりです。
public class Company {
static String[] validDeptNames = {
"Accounting", "Human Resources", "Information Systems", "Marketing"
};
static Department accounting = new Department("Accounting");
static Department marketing = new Department("Marketing");
static Department infoSys = new Department("Information Systems");
static Department humanRes = new Department("Human Resources");
public static void main(String[] args) {
}
}
import java.util.ArrayList;
public class Department {
Department department;
ArrayList<Employee> employees;
Department(String deptName){
employees = new ArrayList<Employee>();
}
static Employee countingGuru = new Employee("Counting Guru", 55);
static Employee countingPro = new Employee("Counting Pro", 45);
static Employee countingSavvy = new Employee("Counting Savvy", 40);
static Employee countingNovice = new Employee("Counting Novice", 25);
static Employee salesGuru = new Employee("Sales Guru", 50);
static Employee salesPro = new Employee("Sales Pro", 48);
static Employee salesSavvy = new Employee("Sales Savvy", 38);
static Employee hiringGuru = new Employee("Hiring Guru", 58);
static Employee hiringPro = new Employee("Hiring Pro", 47);
static Employee hackingPro = new Employee("Hacking Pro", 46);
static Employee hackingGuru = new Employee("Hacking Guru", 51);
static Employee hackingSavvy = new Employee("Hacking Savvy", 38);
static Employee hackingNovice = new Employee("Hacking Novice", 23);
public void addEmployee(Employee employee){
employee.setDepartment(this);
employees.add(employee);
}
accounting.addEmployee(countingGuru);
}
public class Employee implements Comparable<Employee> {
String empName;
int empAge;
Department department;
public Department getDepartment() {
return department;
}
public void setDepartment(Department department) {
this.department = department;
}
String name;
int age;
public Employee(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return empName;
}
public void setName(String name) {
this.empName = name;
}
public int getAge() {
return empAge;
}
public void setAge(int age) {
this.empAge = age;
}
@Override
public int compareTo(Employee arg0) {
return 0;
}
}