111,120
社区成员
发帖
与我相关
我的任务
分享using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication35
{
class Animal
{
public int i = 0;
int j = 0;
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication35
{
class Dog:Animal
{
public int k= 9;
public string ReturName()
{
return "你好";
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication35
{
class Program
{
static void Main(string[] args)
{
Animal al = new Dog();
Animal a = new Animal();
Dog dog = new Dog();
}
}
}