相比于简单工厂,工厂方法是使用一个工厂类去创建一个对象
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FactoryMethod { public interface IRace { void ShowKing(); } }
相比于简单工厂,工厂方法是使用一个工厂类去创建一个对象
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FactoryMethod { public interface IRace { void ShowKing(); } }
内容版权声明:除非注明,否则皆为本站原创文章。