重回:类,对象,方法,属性

类:是抽象的东西,eg:Human
对象:具体的,eg:Chinese
方法:对象具有的能力(函数),eg:Chinese.eat()
属性:属性是类的一个变量,eg:public class a
 
public class a
{
    public string a;
    public int b;
}
原文地址:https://www.cnblogs.com/hanggegege/p/5822641.html