using System;
using System.Collections.Generic;
using System.Text;
namespace _._8
{
class Program
{
static void Main(string[] args)//主方法
{
Person person1 = new Person();//只有在入口中出新人动作 ,person1代表一个对象
//赋值:
person1.name="zhangsan";//属性没括号,
person1.sex="nu";
person1.age="20";
person1.IDCard="123456";
person1.Eat();//方法有括号
}
}
//从这里写类
class Person //声明“人”类。
{
public string name = "";//声明属性:姓名 性别
public string sex = ""; //声明属性:性别(不写值时下面必有赋值)
public string age = "";//声明年纪
public string IDCard = "";//
public void Eat()//方法
{
Console.WriteLine("此方法声明了一个吃饭的动作");
Console.Read();
}
}
}
////综合练习
//1.练习类和对象
阅读(706) | 评论(0) | 转发(0) |