I am doing a project for my java class and I cant understand why I am getting this error. Here is my code:
public class address
{
String Street;
String City;
String State;
String Zip;
public address()
{
Street = "";
City = "";
State = "";
Zip = "";
}
public void setStreet(String street)
{
Street = street;
}
public void setCity(String city)
{
City = city;
}
public void setState(String state)
{
State = state;
}
public void setZip(String zip)
{
Zip = zip;
}
public String getStreet()
{
retrun Street;
}
public String getCity()
{
return City;
}
public String getState()
{
return State;
}
public String getZip()
{
return Zip;
}
}
This is my address class for each employee. We just learned about OOP. This is the CMD output with the error:
