C#—结构与枚举

/* 
 * 结构体使用
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

namespace ConsoleApplication2
{
    struct Point
    {
        public int x, y;
        public Point(int x, int y)
        {
            this.x = x;
            this.y = y;
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            Point point = new Point(23, 67);
            Console.WriteLine("x={0},y={1}", point.x, point.y);
            Console.ReadKey();
        }
    }
}

运行结果:

x=23,y=67

/* 
 * 使用枚举来表示交通灯可能的颜色
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

namespace ConsoleApplication2
{
    enum Color { Red, Yellow, Green }
    class TrafficLight
    {
        public static void WhatInfo(Color color)
        {
            switch (color)
            {
                case Color.Red:
                    Console.WriteLine("Stop!");
                    break;
                case Color.Yellow:
                    Console.WriteLine("Warning!");
                    break;
                case Color.Green:
                    Console.WriteLine("Go!");
                    break;
            }
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            Color c = Color.Red;
            Console.WriteLine(c.ToString());  //枚举类型可以和字符串相互转化,ToString()方法可以将枚举成员转化为相对应的成员的名字
            TrafficLight.WhatInfo(c);
            Console.ReadKey();
        }
    }
}

运行结果:

Red

Stop!


注意:

(1)不能用char做基本类型;

(2)对第一个枚举成员,如果没有显性赋值,则为1;后一成员值为前一成员的值加1;

(3)枚举不能使用修饰符;每个成员都为const,隐含public,static。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值