c# - 在 C# 中初始化变量时出现错误

标签 c# variables scopes

using System;

namespace MergeSortProgram
{
    class MergeSort
    {
        // Merges two subarrays of arr[]. 
        // First subarray is arr[l..m] 
        // Second subarray is arr[m+1..r] 
        public  void merge(int [] arr, int l, int m, int r)
        {
            // Find sizes of two subarrays to be merged 
            int n1 = m - l + 1;
            int n2 = r - m;

            /* Create temp arrays */
            int []L = new int[n1];
            int []R = new int[n2];


            /*Copy data to temp arrays*/
            for (int i = 0; i < n1; ++i)
            {
                L[i] = arr[l + i];
            }
            for (int j = 0; j < n2; ++j)
            {
                R[j] = arr[m + 1 + j];
            }


            /* Merge the temp arrays */

            // Initial indexes of first and second subarrays 
            int i = 0, j = 0;

            // Initial index of merged subarry array 
            int k = l;
            while (i < n1 && j < n2)
            {
                if (L[i] <= R[j])
                {
                    arr[k] = L[i];
                    i++;
                }
                else
                {
                    arr[k] = R[j];
                    j++;
                }
                k++;
            }

            /* Copy remaining elements of L[] if any */
            while (i < n1)
            {
                arr[k] = L[i];
                i++;
                k++;
            }

            /* Copy remaining elements of R[] if any */
            while (j < n2)
            {
                arr[k] = R[j];
                j++;
                k++;
            }
        }

        // Main function that sorts arr[l..r] using 
        // merge() 
        public  void sort(int [] arr, int l, int r)
        {
            if (l < r)
            {
                // Find the middle point 
                int m = (l + r) / 2;

                // Sort first and second halves 
                sort(arr, l, m);
                sort(arr, m + 1, r);

                // Merge the sorted halves 
                merge(arr, l, m, r);
            }
        }

        /* A utility function to print array of size n */
        static void printArray(int [] arr)
        {
            int n = arr.Length;
            for (int i = 0; i < n; ++i)
                Console.Write(arr[i] + " ");
            Console.WriteLine();
        }
        static void Main(string[] args)
        {
            int []arr= { 12, 11, 13, 5, 6, 7 };

           Console.WriteLine("Given Array");
            printArray(arr);
            MergeSort ps = new MergeSort();
            ps.sort(arr, 0, arr.Length - 1);

            Console.WriteLine("\nSorted array");
            printArray(arr);
        }

    }
}

合并函数中for循环的变量i和j给出了这个错误。 无法在此作用域中声明名为“i”的本地或参数,因为该名称在封闭的本地作用域中用于定义本地或参数

有什么帮助吗?

最佳答案

最终,这可以简化为:

for (int i = 0; i < 5; i++) { }
int i = 42;

(请参阅 /*Copy data to temp arrays*/ 周围的 ij)

本地人的范围是这样的,他们不能在这里共享相同的名字;因此,要么将某些代码移至另一个方法,要么更改其中一个局部变量的名称,这样在不同的上下文中就不会出现两个 i/j

或者,但可能令人困惑:

int i;
for (i = 0; i < 5; i++) { }
i = 42;

关于c# - 在 C# 中初始化变量时出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59862216/

相关文章:

c# - 在对象名称中使用变量

c# - 如何避免这些变量的初始化?

c# - 变量的有效范围

c# - 禁止/阻止选择 wpf 中禁用的组合框项目

c# - ASP.net - C# 设置输入类型 : datetime-local to current date

c# - 如何从 YAF.NET 论坛标题中删除登录链接?

xcode - 更新来自不同类别的分数变量

c# - 是什么导致 .Attach() 在 EF4 中变慢?

google-api - 无法使用 - auth/user.phonenumbers.read 范围从用户的谷歌个人资料中读取电话号码

azure-active-directory - 如何在 Azure AD 的 OpenID Connect 元数据发现终结点中包含给定应用程序的自定义范围?