gpt4 book ai didi

c# - 我可以在对象中存储对变量的引用吗?

转载 作者:行者123 更新时间:2023-11-30 12:16:24 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Storing a reference to an object in C#

有没有办法在类对象中存储引用?像这样的东西:

public class X
{
public X(ref int i)
{
_t = i;
}

public void f(int ii)
{
_i = ii;
}

private int ref _i;
}

// ...
int i = 0;
X x = new X(ref i);
x.f(42);
// i is now 42

在 C++ 中,我会使用指针或引用来执行此操作。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com