Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialCaleb Seeling
1,189 PointsPlease help I cant solve the Task number 2!
Please help!
public class Spaceship {
public String shipType;
public String flyingShip;
public Spaceship() {
shipType = "SHUTTLE";
}
public Spaceship(String flyingShip) {
this.flyingShip = "spaceship";
}
public String getShipType() {
return shipType;
}
public void setShipType(String shipType) {
this.shipType = shipType;
}
}
1 Answer
Sai Krishna Katkam
Courses Plus Student 1,946 PointsIt seems that the challenge asks us to update shipType variable to specific type of spaceship using a Constructor that takes a String parameter.
Here, the String parameter would be flyingShip which is assigned to shipType to update shipType variable.
public Spaceship() {
shipType = "SHUTTLE";
}
public Spaceship(String flyingShip) {
this.shipType = flyingShip;
}