public TResponse ExecuteCustomMessage<TResponse>(IModbusMessage request) where TResponse : IModbusMessage,new()
以上是什么意思?我以前从来没有见过这样的东西,虽然我已经在C#编写了几年了…它应该是一个函数,但我不确定这是什么< >和关键字where和new()在最后......
解决方法 它是TResponse泛型类型的 constraint,它实现了接口IModbusMessage并具有无参数构造函数.where T : (interface name) The type argument must be or implement the
specifIEd interface. Multiple interface constraints can be specifIEd.
The constraining interface can also be generic.where T : new() The type argument must have a public parameterless
constructor. When used in conjunction with other constraints,the
new() constraint must be specifIEd last.
另外,正如其他人所指出的那样,我建议你阅读泛型文档(评论中由SLaks指出).
总结以上是内存溢出为你收集整理的C#语法:其中TResponse,new()全部内容,希望文章能够帮你解决C#语法:其中TResponse,new()所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)