C# 结构 枚举 枚举和int以及string类型之间的转换

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _05结构  
  8. {  
  9.     public struct Person  
  10.     {  
  11.         public string _name;//字段  
  12.         public int _age;  
  13.         public Gender _gender;  
  14.     }  
  15.   
  16.     public enum Gender  
  17.     {   
  18.         男,  
  19.         女  
  20.     }  
  21.   
  22.     class Program  
  23.     {  
  24.         static void Main(string[] args)  
  25.         {  
  26.             //XX大学管理系统  
  27.             //姓名、性别、年龄、年级  //5000  20000  
  28.             //string zsName = "张三";  
  29.             //int zsAge = 21;  
  30.             //char zsGender = '男';  
  31.             //int zsGrade = 3;  
  32.   
  33.              string s = "123";  
  34.   
  35.             Person zsPerson;  
  36.             zsPerson._name = "张三";  
  37.             zsPerson._age = 21;  
  38.             zsPerson._gender = Gender.男;  
  39.   
  40.   
  41.             Person lsPerson;  
  42.             lsPerson._name = "李四";  
  43.             lsPerson._age = 22;  
  44.             lsPerson._gender = Gender.女;  
  45.   
  46.   
  47.             Console.WriteLine(zsPerson._name);  
  48.             Console.WriteLine(lsPerson._name);  
  49.             Console.ReadKey();  
  50.   
  51.         }  
  52.     }  
  53. }  
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _02枚举  
  8. {  
  9.     //  
  10.         //    [public] enum 枚举名  
  11.         //{  
  12.         //    值1,  
  13.         //    值2,  
  14.         //    值3,  
  15.         //    ........  
  16.         //}  
  17.   
  18.   
  19.     //声明了一个枚举 Gender  
  20.     public enum Gender  
  21.     {  
  22.         男=0,  
  23.         女=1  
  24.         //  
  25.     }  
  26.   
  27.     class Program  
  28.     {  
  29.   
  30.         static void Main(string[] args)  
  31.         {  
  32.             //变量类型 变量名=值;  
  33.             int n = 10;  
  34.             Gender gender = Gender.男;  
  35.   
  36.             //为什么会有枚举这个东东?  
  37.             //xx大学管理系统  
  38.             //姓名 性别 年龄 系别 年级    
  39.             //性别  
  40.             //char gender = '男';  
  41.             //string s1 = "female";  
  42.             //string ss1 = "爷们";  
  43.         }  
  44.     }  
  45. }  
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _04枚举和int以及string类型之间的转换  
  8. {  
  9.     public enum QQState  
  10.     {  
  11.         OnLine=1,  
  12.         OffLine,  
  13.         Leave,  
  14.         Busy,  
  15.         QMe  
  16.     }  
  17.   
  18.     public enum Gender  
  19.     {  
  20.         男,  
  21.         女  
  22.     }  
  23.     class Program  
  24.     {  
  25.         static void Main(string[] args)  
  26.         {  
  27.             #region 将枚举类型强转成int类型  
  28.             //QQState state = QQState.OnLine;  
  29.             ////枚举类型默认可以跟int类型互相转换  枚举类型跟int类型是兼容的  
  30.             //int n = (int)state;  
  31.             //Console.WriteLine(n);  
  32.             //Console.WriteLine((int)QQState.OffLine);  
  33.             //Console.WriteLine((int)QQState.Leave);  
  34.             //Console.WriteLine((int)QQState.Busy);  
  35.             //Console.WriteLine((int)QQState.QMe);  
  36.             //Console.ReadKey();  
  37.             #endregion  
  38.             #region 将int类型强转为枚举类型  
  39.   
  40.             //int n1 = 3;  
  41.   
  42.             //QQState state = (QQState)n1;  
  43.             //Console.WriteLine(state);  
  44.             //Console.ReadKey();  
  45.             #endregion  
  46.             #region 将枚举类型转换成字符串类型  
  47.             //所有的类型都能够转换成string类型  
  48.             // int n1 = 10;  
  49.             //// double n1 = 3.14;  
  50.             // decimal n1 = 5000m;  
  51.             // string s = n1.ToString();  
  52.             // Console.WriteLine(s);  
  53.             // Console.ReadKey();  
  54.   
  55.             //QQState state = QQState.OnLine;  
  56.             //string s = state.ToString();  
  57.             //Console.WriteLine(s);  
  58.             //Console.ReadKey();  
  59.             #endregion  
  60.             #region 将字符串类型转换为枚举类型  
  61.             //string s = "ABCDEFG";  
  62.             ////将s转换成枚举类型  
  63.             ////Convert.ToInt32()  int.parse()  int.TryParse()  
  64.             ////调用Parse()方法的目的就是为了让它帮助我们将一个字符串转换成对应的枚举类型  
  65.             ////  
  66.             //QQState state = (QQState)Enum.Parse(typeof(QQState), s);  
  67.             //Console.WriteLine(state);  
  68.             //Console.ReadKey();  
  69.             #endregion  
  70.   
  71.   
  72.   
  73.             //枚举练习  
  74.             //提示用户选择一个在线状态,我们接受,并将用户的输入转换成枚举类型。  
  75.             //再次打印到控制台中  
  76.   
  77.             Console.WriteLine("请选择您的qq在线状态 1--OnLine 2--OffLine 3--Leave 4--Busy 5--QMe");  
  78.             string input = Console.ReadLine();  
  79.             switch (input)  
  80.             {  
  81.                 case "1": QQState s1 = (QQState)Enum.Parse(typeof(QQState), input);  
  82.                     Console.WriteLine("您选择的在线状态是{0}",s1);  
  83.                     break;  
  84.                 case "2": QQState s2 = (QQState)Enum.Parse(typeof(QQState), input);  
  85.                      Console.WriteLine("您选择的在线状态是{0}",s2);  
  86.                     break;  
  87.                 case "3": QQState s3 = (QQState)Enum.Parse(typeof(QQState), input);  
  88.                      Console.WriteLine("您选择的在线状态是{0}",s3);  
  89.                     break;  
  90.                 case "4": QQState s4 = (QQState)Enum.Parse(typeof(QQState), input);  
  91.                     Console.WriteLine("您选择的在线状态是{0}", s4);  
  92.                     break;  
  93.                 case "5": QQState s5 = (QQState)Enum.Parse(typeof(QQState), input);  
  94.                     Console.WriteLine("您选择的在线状态是{0}", s5);  
  95.                     break;  
  96.             }  
  97.             Console.ReadKey();  
  98.         }  
  99.     }  
  100. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: