对象: 类的实例化,类中的其中一个, 可以访问类中的属性和方法,所以才有了对象 属性 或者对象方法 () 这种方法
创建对象: 类名 对象名 = new 类名()
- ADC timo = new ADC();
- timo.name = "提莫";// 给对象name 赋值
- timo.age = 200; // 给age 赋值
- timo.sex = true;
- // TimeOnly.Money = 1000; 私有的money不能在外部进行访问
- // timo.height = 1000; 受保护的heifht属性不能再外部进行访问
- timo.Shot();
- timo.Sleep();
- ADC xiaopao = new ADC() { name = "崔斯塔迪", age = 10, sex = false };
- Console.WriteLine(xiaopao.name + xiaopao.age + xiaopao.sex);
对象在自己类里面可以使用this或者省略
对象在类外边必须创建才能使用, 对象.属性进行访问
- class ADC
- {
- // public 公共的 共有的 可以再任意的位置来进行使用 可以再自己类使用 也可以通过对象打点调用属性在其他类里面使用
- // private 私有的 , 只能在自己类里面进行使用
- // protect 受保护的
- public string name;
- public int age;
- public bool sex;
- private double money;//默认为private私有的
- protected double height;//
-
- public void Shot()
- {
- // 自己类方法中使用属性可以通过this.属性进行访问.this也就是其中一个对象,但是this是可以省略的,
-
- Console.WriteLine("我想用"+ this.name+"年龄是"+age+"我有"+money+"去推他");
- }
- public void Sleep()
- {
- Console.WriteLine(this.name+"睡着");
- }
-
- }