什么是类?
类(class)是现实世界事物的模型
类与对象的关系
小总结:
● Student std = new Student(); 怎么理解呢?
解析:实际上,new Student()创建实例,“=”使实例赋值给Student类型的变量std。
备注:这种可以实例化的类不声明变量的话会被垃圾回收。防止占内存。
●如下图,引用的是同一个实例。
类的三大成员
静态成员与实例成员
静态(Static)成员:成员隶属于某个类。
物体固有的性质。与生俱来。 反应在人身上则是:平均身高、平均体重。
实例(非静态)成员:成员属于某个对象。
如人有身高、体重。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace StaticSample
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("静态方法");
Form form = new Form();
form.Text = "非静态(实例)方法";
form.ShowDialog();
}
}
}