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 trialomer syed
8,634 PointsI dont see a constructor named ReactionTime... am i blind?
Im not sure what this is asking.
namespace Treehouse.CodeChallenges
{
class Frog
{
public readonly int TongueLength;
public readonly int ReactionTime;
public Frog(int tongueLength)
{
TongueLength = tongueLength;
}
public bool EatFly(int distanceToFly)
{
return TongueLength >= distanceToFly;
}
}
}
1 Answer
andren
28,558 PointsThe wording is a bit ambiguous. It is not asking you to add a parameter to a constructor called reactionTime
, but rather to add a parameter called reactionTime
to the constructor.
Constructors are always named the same as the class they are inside of, that is literally a part of the requirements of making a constructor. So the constructor is named Frog
.
Basically it is just telling you to do the exact same thing that is currently being done with the TongueLength
field. Add a parameter for ReactionTime
to the Frog
constructor, and assign it a value within the constructor.