suchen

Heim  >  Fragen und Antworten  >  Hauptteil

c++ - C语言有关结构体的问题

上机运行结果是1 2,求解释
struct har
{ int x, y; struct har *p;} h[2];
main()
{

h[0].x=1;
h[0].y=2;
h[1].x=3;
h[1].y=4;
h[0].p=h[1].p=h;
printf("%d %d \n",(h[0].p)->x,(h[1].p)->y);
system("pause");
return 0;

}

大家讲道理大家讲道理2772 Tage vor395

Antworte allen(3)Ich werde antworten

  • 黄舟

    黄舟2017-04-17 14:57:04

    h == &h[0]
    h[1].p == h == &h[0]
    h[0].p == h[1].p == &h[0]
    指向同一个地址h即&h[0],结果是显然的

    Antwort
    0
  • 怪我咯

    怪我咯2017-04-17 14:57:04

    楼主这样赋值h[0].p=h+0; h[1].p=h+1;可能就会有你想要的答案了。

    Antwort
    0
  • ringa_lee

    ringa_lee2017-04-17 14:57:04

    p指向了结构体数组的最前面,当然打印h[0]的内容。

    Antwort
    0
  • StornierenAntwort