我想创建两个父控制器:一个用于管理员,一个用于用户站点。它们必须扩展一个常规的Controller类,但每个类都必须做不同的事情。
In C#, I know that I can overload the constructor for a class by specifying it in the body of the class: public class MyClass() { public MyClass(String s) { ... } } This overrides the default ...