类:
    语法:
    [public] class 类名
    {
    字段;
    属性;
    方法;
    }

    写好了一个类后,需要创建这个类的对象,管这个创建类的对象的过程称之为类的实例化。
    使用关键字new。

    我们创建好一个类的对象后,需要给这个对象的每个属性去赋值。我们管这个过程称之为对象的初始化。

    类的初始化器:
    Person p = new Person (){ Name=”张三”, Age=19, Gender=’男’};

    this:表示当前这个类的对象。
    类是不占内存的,而对象是占内存的

    1. using System;
    2. namespace _047_面对对象初级_2_类的基本语法
    3. {
    4. class Program
    5. {
    6. static void Main(string[] args)
    7. {
    8. Person person; //不占内存
    9. //创建person类的对象
    10. Person wxl = new Person();//占内存
    11. wxl._name = "微咲";
    12. wxl._age = 19;
    13. wxl._gender = '男';
    14. wxl.Habit();
    15. Console.ReadKey();
    16. }
    17. }
    18. }
    1. using System;
    2. using System.Collections.Generic;
    3. using System.Text;
    4. namespace _047_面对对象初级_2_类的基本语法
    5. {
    6. class Person
    7. {
    8. public string _name;
    9. public int _age;
    10. public char _gender;
    11. public void Habit()
    12. {
    13. Console.WriteLine("我叫{0},是{1}生,今年{2}岁了,喜欢打lol看动漫欣赏妹子。", this._name, this._gender, this._age);
    14. }
    15. }
    16. }