C#:在方法参数(不是通用的参数)限制类型

编程入门 行业动态 更新时间:2024-10-19 08:44:36
本文介绍了C#:在方法参数(不是通用的参数)限制类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想$,如C $ CA功能如下

I'd like to code a function like the following

public void Foo(System.Type t where t : MyClass) { ... }

在换句话说,参数类型为的System.Type ,我想限制所允许的键入取值那些从获得 MyClass的。

In other words, the argument type is System.Type, and I want to restrict the allowed Types to those that derive from MyClass.

有没有什么办法语法指定这个,或者做 T 已在运行时检查?

Is there any way to specify this syntactically, or does t have to be checked at runtime?

推荐答案

如果你的方法必须采取的类型的类型,因为它的说法,我不认为有办法做到这一点。如果你有方法灵活调用,你可以做:公共无效美孚(MyClass的MyClass的)和获得型致电.GetType()

If your method has to take a Type type as it's argument, I don't think there's a way to do this. If you have flexibility with the method call you could do: public void Foo(MyClass myClass) and the get the Type by calling .GetType().

要扩大一点。 System.Type的是参数的类型,所以没有办法进一步明确哪些应该传递。就像一个方法,需要1到10之间的整数,必须采取一个int,然后进行运行时检查的范围是适当的遵守。

To expand a little. System.Type is the type of the argument, so there's no way to further specify what should be passed. Just as a method that takes an integer between 1 and 10, must take an int and then do runtime checking that the limits were properly adhered to.

更多推荐

C#:在方法参数(不是通用的参数)限制类型

本文发布于:2023-11-11 23:14:09,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1579808.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:参数   类型   方法

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!