zoukankan      html  css  js  c++  java
  • 工厂模式中的泛型接口

    Java

    @@@code

    public interface DataBodyFormatter<T> {
        void Serialize(ByteBuf writer, T value, Version version);
        T Deserialize(ByteBuf reader,Version version);
    }

    public class DataBodyFormatterFactory {


    public DataBodyFormatterFactory() {
    }

    /**
    *
    系统内的formatters,自动注册
    */
    @Autowired
    Map<String, DataBodyFormatter> formatters;

    }

    public <D> DataBodyFormatter<D> getDataBodyFormatter(long code, boolean isReply) {

       

    }

    # 使用,默认就是object

    dataBodyFormatter = _DataBodyFactory.getDataBodyFormatter(code, isClientMode());

       

       

    @@#

       

    而在NET中

    @@@code

    public interface IDataBodyFormatterBase

    {

         object Deserialize(IByteBuffer reader, Version version);

    }

    public interface IDataBodyFormatter<T> : IDataBodyFormatterBase

    {

    void Serialize(IByteBuffer writer, T value, Version version);

    new T Deserialize(IByteBuffer reader, Version version);

    }

    # 使用一个基类

    public abstract class TDataBody<T> : DataBody, IDataBodyFormatter<T>

    {

    public abstract T Deserialize(IByteBuffer reader, Version version);

    public abstract void Serialize(IByteBuffer writer, T value, Version version);

       

    object IDataBodyFormatterBase.Deserialize(IByteBuffer reader, Version version)

    {

    return this.Deserialize(reader, version);

    }

    }

    public class DataBodyFormatterFactory : IDataBodyFormatterFactory

    {

       

    [Autowired()]

    public Dictionary<string, IDataBodyFormatterBase> FormatterDict { get; set; }

       

    //不允许的写法

    //public Dictionary<string, IDataBodyFormatter> FormatterDict2 { get; set; }

       

    public IDataBodyFormatterBase getDataBodyFormatter(int code, bool isReply = false)

    {

    }

    }

    # 使用

    dataBodyFormatter = _DataBodyFactory.getDataBodyFormatter(code, IsClientMode);

       

    @@#

  • 相关阅读:
    Codeforces 787D. Legacy 线段树优化建图+最短路
    Codeforces 1051E. Vasya and Big Integers
    BZOJ3261 最大异或和
    BZOJ3531 SDOI2014 旅行
    洛谷P2468 SDOI 2010 粟粟的书架
    2018 ICPC 焦作网络赛 E.Jiu Yuan Wants to Eat
    HDU6280 From Tree to Graph
    HDU5985 Lucky Coins 概率dp
    (HDU)1334 -- Perfect Cubes (完美立方)
    (HDU)1330 -- Deck (覆盖物)
  • 原文地址:https://www.cnblogs.com/QinQouShui/p/14310335.html
Copyright © 2011-2022 走看看