摘要: public class User { //使用省缺参数,一般不需要再为多态做各种静态重载了 public User( string name = "anonym", string type = "user" ) { this.UserName = name; this.UserType = type; } publ... 阅读全文
posted @ 2014-10-24 10:07 qizhinan 阅读(11178) 评论(0) 推荐(1) 编辑