类对象指针

类对象指针定义

         Tdate d1;

         Tdate *p1=&d1;

         Tdate *p2=(Tdate *)malloc(sizeof(Tdate));


你可能感兴趣的:(指针)