如何为这段函数添加主函数using System; using Test; namespace Test { public interface IAnimal { void Behavior(); } } public class Dog : IAnimal { public void Behavior() { Console.WriteLine("Sleep in nights and work on days "); } } public class cat : IAnimal { public void Behavior() { Console.WriteLine("Sleep in days and work on nights"); } }
时间: 2024-04-15 13:31:18 浏览: 76
要为这段代码添加一个主函数,你可以在命名空间`Test`外部的类中定义一个`Main`方法。以下是一个示例:
```csharp
using System;
namespace Test
{
public interface IAnimal
{
void Behavior();
}
public class Dog : IAnimal
{
public void Behavior()
{
Console.WriteLine("Sleep at night and work during the day");
}
}
public class Cat : IAnimal
{
public void Behavior()
{
Console.WriteLine("Sleep during the day and work at night");
}
}
public class Program
{
public static void Main(string[] args)
{
IAnimal dog = new Dog();
IAnimal cat = new Cat();
dog.Behavior();
cat.Behavior();
}
}
}
```
在这个示例中,我创建了一个名为`Program`的类,并在其中定义了静态的`Main`方法。在`Main`方法中,我创建了一个`Dog`对象和一个`Cat`对象,并调用它们的`Behavior`方法进行输出。
请注意,类名应该使用大写字母开头,因此我将`cat`改为了`Cat`。
现在你可以在这个代码中添加你自己的逻辑,并在主函数中实例化并调用你的类的方法。
希望这可以帮助到你!如果你还有其他问题,请随时提问。
阅读全文