C + + array subscript can be negative

Source: Internet
Author: User

We know that the first element of an array is subscript 0. The range of the array is from array[0] to array[size–1]. In fact, C + + supports positive and negative subscripts. The negative subscript must be within the bounds of the array, otherwise the result is unpredictable. The following code shows the positive and negative group subscripts:

#include <iostream>using namespace Std;int main () {    int intarray[1024];    for (int i = 0, j = 0; i < 1024x768; i++)    {        Intarray[i] = j + +;    }    cout << intarray[512] << Endl;    *midarray int = &intArray[512];  Points to the middle of the array data    cout << midarray[-256] << Endl;    cout << intarray[-256] << Endl;  To get unpredictable results}

A negative subscript in the last line can produce a run-time error because it points to an address that is 256 bytes lower in memory than the origin of the array. The pointer Midarray is initialized to the midpoint of the intarray, so you can use positive and negative group indexes on it. Array subscript errors do not produce compile-time errors, but they produce unpredictable results.

Reference: http://blog.csdn.net/mycwq/article/details/43373965

Https://msdn.microsoft.com/en/library/59682zc4.aspx

C + + array subscript can be negative

Large-Scale Price Reduction
  • 59% Max. and 23% Avg.
  • Price Reduction for Core Products
  • Price Reduction in Multiple Regions
undefined. /
Connect with us on Discord
  • Secure, anonymous group chat without disturbance
  • Stay updated on campaigns, new products, and more
  • Support for all your questions
undefined. /
Free Tier
  • Start free from ECS to Big Data
  • Get Started in 3 Simple Steps
  • Try ECS t5 1C1G
undefined. /

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.