C#初始化问题
发布时间:2020-12-15 17:43:08 所属栏目:百科 来源:网络整理
导读:这可能是蹩脚的,但在这里: public interface InterfaceT{ T Value { get; }}public class InterfaceProxyT : InterfaceT{ public T Value { get; set; }}public class ImplementedInterface: InterfaceProxyDouble {} 现在我想创建一个ImplementedInterface
这可能是蹩脚的,但在这里:
public interface Interface<T> { T Value { get; } } public class InterfaceProxy<T> : Interface<T> { public T Value { get; set; } } public class ImplementedInterface: InterfaceProxy<Double> {} 现在我想创建一个ImplementedInterface的实例并初始化它的成员. 可以这样做(使用初始化列表),或者只能使用带有Double参数的构造函数来实现相同的行为吗? var x = new ImplementedInteface { 30.0 }; 解决方法
可以通过以下方式完成
var x = new ImplementedInteface { Value = 30.0 }; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |