当前位置 : 主页 > 网络编程 > net编程 >

switch类型模式

来源:互联网 收集:自由互联 发布时间:2023-10-08
switch的模式中有一种叫类型模式,可以根据switch的类型来执行对应的case,这点在代码中用到的比较频繁,特别是在对应同类型对象的操作中。本例是把一组数据,转成一种格式,就是很

  switch的模式中有一种叫类型模式,可以根据switch的类型来执行对应的case,这点在代码中用到的比较频繁,特别是在对应同类型对象的操作中。本例是把一组数据,转成一种格式,就是很简单的使用switch类型模式实现,具体见代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SwitchDemo;

public class ClassOne
{
public void Run()
{
var entity = new YamlFormatCreater();
var data = new Data();
Console.WriteLine(GetData(entity, data));
}
public string GetDataFormat(IFormatCreater entity, Data data) => entity switch
{
CSVFormatCreater csvFormatCreater => csvFormatCreater.ToCSV(data),
JsonFormatCreater jsonFormatCreater => jsonFormatCreater.ToJson(data),
XMLFormatCreater xmlFormatCreater => xmlFormatCreater.ToXML(data),
YamlFormatCreater yamlFormatCreater => yamlFormatCreater.ToYAML(data),
_ => "this format is not adapted"
};
}

public class Data
{
public int ID { get; set; }
public string? Name { get; set; }
public string? Model { get; set; }
}
public interface IFormatCreater
{ }

public class CSVFormatCreater : IFormatCreater
{
public string ToCSV(Data data)
{
return "To CSV";
}
}
public class JsonFormatCreater : IFormatCreater
{
public string ToJson(Data data)
{
return "To JSON";
}
}
public class XMLFormatCreater : IFormatCreater
{
public string ToXML(Data data)
{
return "To XML";
}
}
public class YamlFormatCreater : IFormatCreater
{
public string ToYAML(Data data)
{
return "To YAML";
}
}

 想要更快更方便的了解相关知识,可以关注微信公众号 

switch类型模式_微信公众号

上一篇:.NET 深度指南:Colors
下一篇:没有了
网友评论