Page 247 - AP Computer Science A, 7th edition
P. 247

private double y;
//various methods follow ...
firstName; lastName;
}
(B) public class Name {
private String private String
//various methods follow ...
}
(C) public class Car {
private int modelNumber; private int year; private double price;
//various methods follow ...
}
(D) public class Student {
private String name; private double gpa;
//various methods follow ...
}
(E) public class Employee {
private String name; private int hireDate; private double salary;
//various methods follow ...
}















































































   245   246   247   248   249