typedef struct _MyStruct { int a; int b; int c; _MyStruct() { a = 0; b = 0; c = 0; } }MyStruct; int main() { #if 1 MyStruct* st[3]; //指针数组 MyStruct* s Read More
posted @ 2022-09-26 12:48 Brickert Views(82) Comments(0) Diggs(0) Edit