这个指针示例如何不会产生错误?

时间:2016-10-13 01:41:19

标签: c arrays function pointers const

我刚刚开始学习使用C编程语言的指针,我对这个特殊的代码示例进行了深入研究,他们在我使用的书中有这样的代码:

#include <stdio.h>
#define SIZE 10

void bubbleSort( int * const array, const size_t size ); // prototype

int main( void )
{
// initialize array a
    int a[ SIZE ] = { 2, 6, 4, 8, 10, 12, 89, 68, 45, 37 };

    size_t i; // counter

    puts( "Data items in original order" );

    // loop through array a
    for ( i = 0; i < SIZE; ++i ) 
    {
        printf( "%4d", a[ i ] );
    } // end for

    bubbleSort( a, SIZE ); // sort the array

    puts( "\nData items in ascending order" );

    // loop through array a
    for ( i = 0; i < SIZE; ++i ) 
    {
        printf( "%4d", a[ i ] );
    } // end for

    puts("");

return 0;
}

// sort an array of integers using bubble sort algorithm
void bubbleSort( int * const array, const size_t size )
{

    void swap( int *element1Ptr, int *element2Ptr ); // prototype
    unsigned int pass; // pass counter
    size_t j; // comparison counter

    // loop to control passes
    for ( pass = 0; pass < size - 1; ++pass )
    {

        // loop to control comparisons during each pass
        for ( j = 0; j < size - 1; ++j ) 
        {

            // swap adjacent elements if they’re out of order
            if ( array[ j ] > array[ j + 1 ] ) 
            {
                swap( &array[ j ], &array[ j + 1 ] );
            } // end if
        } // end inner for
    } // end outer for
} // end function bubbleSort

// swap values at memory locations to which element1Ptr and
// element2Ptr point
void swap( int *element1Ptr, int *element2Ptr )
{
    int hold = *element1Ptr;
    *element1Ptr = *element2Ptr;
    *element2Ptr = hold;
} // end function swap

我不理解的是为什么这没有给出任何错误,因为我在bubbleSort函数的参数中看到,在数组前面有一个const,使数组成为了它指向const,以便无法更改。但是在这个函数中,我们正在交换数组中的元素,所以不应该因为对数组进行更改而产生错误?我假设我可能没有准确理解指针在这种情况下是如何工作的?

1 个答案:

答案 0 :(得分:2)

GROUP BY的含义是指针本身不能修改,但可以修改数组的值。换句话说,假设我们在内存中有一个块,将地址保存到另一个内存块。如果int * const array位于类型之后,则此块中保存地址的值不能更改,但可以更改具有实际数组值的其他内存块。因此,您无法实例化内存的新部分并将其地址放入const