Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3137509
  • 博文数量: 1412
  • 博客积分: 15478
  • 博客等级: 上将
  • 技术积分: 14938
  • 用 户 组: 普通用户
  • 注册时间: 2007-08-23 16:08
文章存档

2016年(1)

2015年(17)

2013年(13)

2012年(103)

2011年(185)

2010年(261)

2009年(425)

2008年(363)

2007年(44)

分类: 数据库开发技术

2009-06-28 23:17:58

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) |
给主人留下些什么吧!~~