Informatică, întrebare adresată de andreistancu96, 8 ani în urmă

Salut !
Ma puteti ajuta si pe mine va rog la acesta problema ? lucrez la sololearn c# si am intampinat aceasta problema ,nu imi ruleaza codul:
Derived Class Constructor & Destructor


You are the airport administrator responsible for setting flight statuses.
At first the flight program was showing only "Registration" and "Closed" statuses, but we need to expand it to give more detailed information.
Derive WayStatus class from Flight class and complete its
1. constructor, to output "On the way"
2. destructor, to output "Landed"

so that the program correctly outputs all the statuses of the flight.

Anexe:

Răspunsuri la întrebare

Răspuns de VxF
0

Răspuns:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading;

using System.Threading.Tasks;

namespace SoloLearn

{

   class Program

   {

       static void Main(string[] args)

       {

           WayStatus status = new WayStatus();

       }

   }

   class Flight

   {

       public Flight()

       {

           Console.WriteLine("Registration");

       }

       ~Flight()

       {

           Console.WriteLine("Closed");

       }

   }

   /*derive this class from Flight class,

   define constructor and destructor for it*/

   class WayStatus : Flight

   {

       public WayStatus()

       {

           Console.WriteLine("On the way");

       }

       ~WayStatus()

       {

           Console.WriteLine("Landed");

       }

   }

}

Explicație:

Nu știu dacă am înţeles corect enunţul. Am rezolvat mai mult pe bănuite că asta părea mai logic să vrea.

Alte întrebări interesante