c#基础知识第九节
2021-05-06 15:28
标签:line ring main void c# 创建对象 static string lin 类和对象 class Dog class Program } c#基础知识第九节 标签:line ring main void c# 创建对象 static string lin 原文地址:http://www.cnblogs.com/zhang1997/p/7656678.html
{
//共同特征,品种(字段)
public string breed;
//行为, 犬叫(方法)
public void Shout ()
{
Console.WriteLine(breed + "汪汪汪!");
}
}
{
static void Main(string[] args)
{
//创建对象的语法:类名 对象名称 =new 类名();
Dog dog = new Dog();
//创建对象后,可以通过对象的引用来访问对象的所有成员。
dog.breed = "沙皮狗";
dog.Shout();
}