c指向struct问题的指针

时间:2015-05-26 23:47:36

标签: c pointers struct

以下代码在第二个到最后一个语句的箭头处给出了错误。我不知道为什么会这样。有人可以告诉我为什么吗?

我不知道从哪里开始。我认为这是正确的,但有一些问题。

      /* 
 * File:   newmain.c
 * Author: user1
 *
 * Created on May 26, 2015, 4:30 PM
 */

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
/*
 * 
 */


#ifndef KEYTYPE
#define KEYTYPE      char *
#endif

#ifndef VALUETYPE
#define VALUETYPE     double
#endif

#ifndef TYPE
#define TYPE struct association
//# define TYPE int
#endif

struct association
{

    KEYTYPE key;
    VALUETYPE value;

};

struct DynArr
{
    TYPE *data;     /* pointer to the data array */
        //struct association *data;
    int size;       /* Number of elements in the array */
    int capacity;   /* capacity ofthe array */
};


int main(int argc, char** argv) {

    struct DynArr *da;
    da = malloc(sizeof(struct DynArr));


    assert(da!= 0);
    da->capacity = 2;
    da->data = malloc(sizeof(TYPE) * da->capacity);
    assert(da->data != 0);
    da->size = 0;


    if(da->data[0]->key == 2) //test.c:58:10: error: invalid type argument of ‘->’ (have ‘struct DynArr’)    <<<<<<<<<<<<<<<<<<

    return (EXIT_SUCCESS);
}

1 个答案:

答案 0 :(得分:1)

您使用了错误的运算符,struct DynArr的实例不是指针,因此您必须使用.运算符。

struct DynArr da;
/* This is also wrong because `capacity' has not been initialized yet! */
assert(da.capacity > 0); 
      /* ^ it's not a poitner */

并且在所有其他情况下都相同。

当实例是struct的poitner时,比如

struct DynArr  da;
struct DynArr *pda;

pda = &da;
pda->capacity = 0;
 /* ^ it's correct here */

修改

编辑完问题后,我可以看到问题

if(da->data[0]->key == 2)

da->data的类型为TYPE *,您正在取消引用指向da->data[0]中第一个元素的指针,因此它不再是TYPE *类型,即不是指针,所以你需要

if(da->data[0].key == 2)