2 min readβ’december 21, 2021
Milo Chang
Milo Chang
public class Student
{
Β Β private String name;
Β Β public Student (String newName)
Β Β {
Β Β Β name = newName;
Β Β }
Β Β public void setName (String newName)
Β Β {
Β Β Β name = newName;
Β Β }
Β
Β Β public String getName ()
Β Β {
Β Β Β return name;
Β Β }
}
public class Athlete extends Student
{
Β Β public void printName ()
Β Β {
Β Β Β System.out.println(name); // THIS WILL NOT WORK
Β Β }
Β Β // There may be instance variables, constructors, and other methods not
Β Β // shown.
}
Β© 2023 Fiveable Inc. All rights reserved.