得到;放;变量

发布于 2024-10-31 00:58:47 字数 556 浏览 1 评论 0原文

我正在设置多种方法,并想知道如何继续将一个变量(“top”变量)传递给不同的方法。

Main方法:

public static void Main(string[] args)
    {
        int[] anArray = new int[5];
        int top = -1;
        PushPeek(anArray);

然后我需要将top传递给:

public static void PushPeek(int[] ar)
    {

        if (ar[ar.Length -1] == ar.Length -1)
        {
            //do nothing
        }
        else
        {
            top = top + 1;
            Console.WriteLine(ar[top]);
        }
    }\

我知道它涉及到一些与get有关的东西;放;但我不知道怎么办,有帮助吗?

I'm setting up multiple methods and wondering how to continue to pass one variable (The "top" variable) to different methods.

Main method:

public static void Main(string[] args)
    {
        int[] anArray = new int[5];
        int top = -1;
        PushPeek(anArray);

then I need to pass top to:

public static void PushPeek(int[] ar)
    {

        if (ar[ar.Length -1] == ar.Length -1)
        {
            //do nothing
        }
        else
        {
            top = top + 1;
            Console.WriteLine(ar[top]);
        }
    }\

I know it involves something with get; set; but I don't know how, any help?

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

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

发布评论

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

评论(2

笑红尘 2024-11-07 00:58:47

通过引用传递:

public static void PushPeek(int[] ar, ref int top)
{
    ...
}

int[] anArray = new int[5];
int top = -1;
PushPeek(anArray, ref top);

Pass it by reference:

public static void PushPeek(int[] ar, ref int top)
{
    ...
}

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