C#语法:其中TResponse,new()

C#语法:其中TResponse,new(),第1张

概述public TResponse ExecuteCustomMessage<TResponse>(IModbusMessage request) where TResponse : IModbusMessage, new() 以上是什么意思?我以前从来没有见过这样的东西,虽然我已经在C#编写了几年了…它应该是一个函数,但我不确定这是什么< >和关键字where和new()在最后......
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()所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1224773.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存