C# 中的 void* 替代方案

发布于 2024-11-07 01:32:54 字数 117 浏览 1 评论 0 原文

我正在创建一个调用回调函数的类,我希望它在某些情况下传递一些数据,但这些数据可能会有所不同。在 C++ 中,我会使用 void*,但在 C# 中它是不安全的,这意味着它可能会被GC。 C# 有没有办法传递未知类型的数据?

I am making a class that calls a callback function and I want it to pass some data in some cases but that data may vary. In C++ I would use void* but in C# it's unsafe and it means it might get GCed. Is there any way of passing unknown type of data in C#?

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

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

发布评论

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

评论(6

陌生 2024-11-14 01:32:54

您有两个选项:

泛型(它允许您调用方法时指定类型...并且对象将在方法中正确键入。)

// Definition:
public void MyMethod<T>(T myParameter)
{
    /* My Code */
}

// Call:
MyMethod<int>(999);

// Call:
MyMethod<bool>(false);

System.Object (这意味着您必须确定方法内对象的实际类型并进行适当的转换)

// Definition:
public void MyMethod(Object myParameter)
{
    /* My Code */
}

// Call:
MyMethod(999);

// Call:
MyMethod(false);

You've got two options:

Generics (which allow you to specify the type when you call the method... and the object will be properly typed within the method.)

// Definition:
public void MyMethod<T>(T myParameter)
{
    /* My Code */
}

// Call:
MyMethod<int>(999);

// Call:
MyMethod<bool>(false);

Or System.Object (which means you'll have to ascertain the object's actual type inside your method and cast appropriately)

// Definition:
public void MyMethod(Object myParameter)
{
    /* My Code */
}

// Call:
MyMethod(999);

// Call:
MyMethod(false);
同展鸳鸯锦 2024-11-14 01:32:54

最简单的解决方案是使用 object 类型,因为所有其他对象都继承自该对象。这样做可以让您自己传入任何对象类型。

http://msdn.microsoft.com/en-us/library/system .object.aspx

The simplest solution would be to use the object type because all other objects inherit from this object. Doing so you allow yourself to pass in any object type.

http://msdn.microsoft.com/en-us/library/system.object.aspx

日暮斜阳 2024-11-14 01:32:54

您可以将其传递给对象。与 C++ 不同,您可以在 C# 中执行类型安全转换,而在 C++ 中则不能。

You'd pass it around at an object. Unlike C++ you'll be able to do a type safe cast in C#, whereas you can't in C++.

迷路的信 2024-11-14 01:32:54

我认为你应该使用 Object.

I think you should use Object.

━╋う一瞬間旳綻放 2024-11-14 01:32:54

如果您使用 .net 4,您还可以使用 dynamic 类型。

If you're working in .net 4 you can also use the dynamic type.

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