typedef_struct與struct之間的差別。本站提示廣大學習愛好者:(typedef_struct與struct之間的差別)文章只能為提供參考,不一定能成為您想要的結果。以下是typedef_struct與struct之間的差別正文
#include <iostream>
using namespace std;
void main()
{
int x;
//MSG1作為構造A的別號
typedef struct A{
int age;
char s;
}MSG1,*p1;
MSG1 msg1 ;
msg1.age=10;
p1 point =&msg1;
//msg2作為構造B的變量
struct B{
int age;
char s;
}msg2,*p2 = new B;
msg2.age = 3;
p2->age=4;
//
cout<<(*point).age<<endl<<msg2.age;
//
cin>>x;
}