我有一个工厂。我不想让这个工厂生产的类在工厂外被实例化。如果我让它们抽象、静态,或者给它们私有(private)构造函数,那么它们将根本无法实例化!这是语言限制还是什么?我不想让这个varawcrap=newExtrude2013();//BAD!!!awcrap.extrudify();//Idon'twanttoallowthis其余代码:usingSystem;namespacetestie{publicenumExtrudeType{Extrude2013,Extrude2014}publicinterfaceIExtrudeStuff{voidextrudify();}pub