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 trial

C# C# Objects Methods Method Overloading

Mzilikazi Maile
Mzilikazi Maile
196 Points

I dont get this question properly please repeat it

The question which is give im abit confused

Frog.cs
namespace Treehouse.CodeChallenges
{
    class Frog
    {
        public readonly int TongueLength;
        public readonly int ReactionTime;


        public Frog(int tongueLength)
        {
            TongueLength = tongueLength;
           reactionTime = ReactionTime;
        }

        public bool EatFly(int distanceToFly, int reactionTime)
        {

            TongueLength = tongueLength;
            return TongueLength >= distanceToFly;


        }

       public int reactionTime()
        {
        ReactionTime = reactionTime;
        }
    }
}

1 Answer

Steven Parker
Steven Parker
229,732 Points

The instructions for task 2 say "Add a second parameter to the constructor named reactionTime after the existing parameter and use it to initialize the value of the ReactionTime field."

So this parameter, along with the assignment, needs to be added to the "Frog" constructor method. You won't need a separate "reactionTime" method.

Oddly, it looks like you already started on task 3 but that sill needs some work. Get past task 2 first and then re-read the task 3 instructions carefully.