System.Void类型如何为不返回值的方法指定返回值类型?

发布于 2024-07-30 14:21:44 字数 57 浏览 4 评论 0原文

这是没有返回值的实际类型方法吗?

如果是这样,那么“什么也不返回”的区别在哪里?

Is this the actual type methods without a return value return?

If so, where is the distinction that "nothing" is returned made?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

初熏 2024-08-06 14:21:44

我不确定你到底在找什么。 有一个 System.Void 和一个关键字“void”。

使用该关键字的原因由您的类型定义说明。 当您询问方法信息将返回什么“类型”时,该类型将在反射中使用。

I'm not sure exactly what you're looking for. There is a System.Void and a keyword 'void'.

The keyword is used for reasons stated by your definition of the type. The type is used in reflection when you ask what 'type' a method info will return.

任性一次 2024-08-06 14:21:44

该方法不返回任何内容; 堆栈上不会出现返回值(与空值、全零、对 System.Void 的引用等相反)。

System.Void 类型只是一个反射 API 的占位符,以便反射可以方便地告诉您该方法不返回值。

The method does not return anything; no return value appears on the stack (as opposed to a null value, all zeros, a reference to System.Void, etc.)

The System.Void type is just a placeholder for the reflection APIs so that reflection has a convenient way to tell you that the method does not return a value.

池木 2024-08-06 14:21:44

这个值类型实际上是供反射使用的。 假设您要查询方法的返回类型。 你会得到什么价值? 这就是 System.Void 的用途。

但文档已经说:

Void 结构用于 System.Reflection 命名空间,但在典型应用程序中很少有用。 除了所有类型都从 Object 类继承的成员之外,Void 结构没有其他成员。

This value type is actually for reflection use. Suppose you want to query the return type of a method. What value would you get back? This is what System.Void is for.

But the documentation already says:

The Void structure is used in the System.Reflection namespace, but is rarely useful in a typical application. The Void structure has no members other than the ones all types inherit from the Object class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文