加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
005-实例和静态成员.cs 753 Bytes
一键复制 编辑 原始数据 按行查看 历史
using System;
namespace _005_实例和静态成员
{
public class Panda
{
public string Name; // 实例字段
public static int Population; // 静态字段
public Panda(string n) // 构造方法
{
Name = n; // 为实例字段赋值
Population = Population + 1; // 增加静态字段Population的值
}
}
class Program
{
static void Main(string[] args)
{
Panda p1 = new Panda("Pan Dee");
Panda p2 = new Panda("Pan Dah");
Console.WriteLine(p1.Name); // Pan Dee
Console.WriteLine(p2.Name); // Pan Dah
Console.WriteLine(Panda.Population); // 2
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化