Как увеличить адрес указателя и значение указателя? - PullRequest
76 голосов
/ 21 ноября 2011

Допустим,

int *p;
int a = 100;
p = &a;

Что будет делать следующий код на самом деле и как?

p++;
++p;
++*p;
++(*p);
++*(p);
*p++;
(*p)++;
*(p)++;
*++p;
*(++p);

Я знаю, это немного запутанно с точки зрения кодирования, но я хочу знать, что на самом деле произойдет, когда мы будем так кодировать.

Примечание. Предположим, что адрес a=5120300 хранится в указателе p, адрес которого 3560200.Теперь, каково будет значение p & a после выполнения каждого оператора?

Ответы [ 5 ]

134 голосов
/ 21 ноября 2011

Во-первых, оператор ++ имеет приоритет над оператором *, а операторы () имеют приоритет над всем остальным.

Во-вторых, оператор числа ++ такой же, как оператор числа ++, если вы никому их не назначаете. Разница в том, что число ++ возвращает число, а затем увеличивает число, а число ++ сначала увеличивает, а затем возвращает его.

В-третьих, увеличивая значение указателя, вы увеличиваете его на размер его содержимого, то есть увеличиваете его, как если бы вы итерировали в массиве.

Итак, подведем итог:

ptr++;    // Pointer moves to the next int position (as if it was an array)
++ptr;    // Pointer moves to the next int position (as if it was an array)
++*ptr;   // The value of ptr is incremented
++(*ptr); // The value of ptr is incremented
++*(ptr); // The value of ptr is incremented
*ptr++;   // Pointer moves to the next int position (as if it was an array). But returns the old content
(*ptr)++; // The value of ptr is incremented
*(ptr)++; // Pointer moves to the next int position (as if it was an array). But returns the old content
*++ptr;   // Pointer moves to the next int position, and then get's accessed, with your code, segfault
*(++ptr); // Pointer moves to the next int position, and then get's accessed, with your code, segfault

Поскольку здесь много случаев, возможно, я допустил какую-то ошибку, пожалуйста, исправьте меня, если я ошибаюсь.

EDIT:

Так что я был неправ, приоритет немного сложнее, чем то, что я написал, посмотрите здесь: http://en.cppreference.com/w/cpp/language/operator_precedence

10 голосов
/ 23 марта 2015

проверил программу и результаты как,

p++;    // use it then move to next int position
++p;    // move to next int and then use it
++*p;   // increments the value by 1 then use it 
++(*p); // increments the value by 1 then use it
++*(p); // increments the value by 1 then use it
*p++;   // use the value of p then moves to next position
(*p)++; // use the value of p then increment the value
*(p)++; // use the value of p then moves to next position
*++p;   // moves to the next int location then use that value
*(++p); // moves to next location then use that value
3 голосов
/ 21 ноября 2011

Относительно «Как увеличить адрес указателя и значение указателя?» Я думаю, что ++(*p++); на самом деле хорошо определено и выполняет то, что вы запрашиваете, например ::10000 *

#include <stdio.h>

int main() {
  int a = 100;
  int *p = &a;
  printf("%p\n",(void*)p);
  ++(*p++);
  printf("%p\n",(void*)p);
  printf("%d\n",a);
  return 0;
}

Это не модифицирует одно и то же дважды перед точкой последовательности. Я не думаю, что это хороший стиль, хотя для большинства случаев он слишком загадочный, на мой взгляд.

2 голосов
/ 05 февраля 2018

Ниже приведено описание различных предложений "просто распечатай".Я нашел это поучительным.

#include "stdio.h"

int main() {
    static int x = 5;
    static int *p = &x;
    printf("(int) p   => %d\n",(int) p);
    printf("(int) p++ => %d\n",(int) p++);
    x = 5; p = &x;
    printf("(int) ++p => %d\n",(int) ++p);
    x = 5; p = &x;
    printf("++*p      => %d\n",++*p);
    x = 5; p = &x;
    printf("++(*p)    => %d\n",++(*p));
    x = 5; p = &x;
    printf("++*(p)    => %d\n",++*(p));
    x = 5; p = &x;
    printf("*p++      => %d\n",*p++);
    x = 5; p = &x;
    printf("(*p)++    => %d\n",(*p)++);
    x = 5; p = &x;
    printf("*(p)++    => %d\n",*(p)++);
    x = 5; p = &x;
    printf("*++p      => %d\n",*++p);
    x = 5; p = &x;
    printf("*(++p)    => %d\n",*(++p));
    return 0;
}

Возвращает

(int) p   => 256688152
(int) p++ => 256688152
(int) ++p => 256688156
++*p      => 6
++(*p)    => 6
++*(p)    => 6
*p++      => 5
(*p)++    => 5
*(p)++    => 5
*++p      => 0
*(++p)    => 0

Я приведу адреса указателей к int s, чтобы их можно было легко сравнить.это с GCC.

0 голосов
/ 24 июня 2018
        Note:
        1) Both ++ and * have same precedence(priority), so the associativity comes into picture.
        2) in this case Associativity is from **Right-Left**

        important table to remember in case of pointers and arrays: 

        operators           precedence        associativity

    1)  () , []                1               left-right
    2)  *  , identifier        2               right-left
    3)  <data type>            3               ----------

        let me give an example, this might help;

        char **str;
        str = (char **)malloc(sizeof(char*)*2); // allocate mem for 2 char*
        str[0]=(char *)malloc(sizeof(char)*10); // allocate mem for 10 char
        str[1]=(char *)malloc(sizeof(char)*10); // allocate mem for 10 char

        strcpy(str[0],"abcd");  // assigning value
        strcpy(str[1],"efgh");  // assigning value

        while(*str)
        {
            cout<<*str<<endl;   // printing the string
            *str++;             // incrementing the address(pointer)
                                // check above about the prcedence and associativity
        }
        free(str[0]);
        free(str[1]);
        free(str);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...