NDK开发汇总
一 结构体结构体: 一系列不同类型的数据的结合
强调:类型!= 变量。 结构体名代表的只是结构体类型,没有内存空间。
结构体中的成员可以单独使用
struct Studet {
char name[20];
int age;
char gender[10];
int classId;
};
//使用:struct Studet st;
也可以定义全局,与方法中使用的结构体类型一致,作用域不同
struct Studet {
char name[20];
int age;
char gender[10];
int classid;
}Lucy;
2 匿名结构体
用一种特殊的结构体,没有结构体名称直接定义变量名:
作用:不能再申请对应类型的变量,类似java的匿名内部类
struct {
char name[20];
int age;
int classid;
} stu2,stu3;
注意:
类型不等于变量,结构体名代表的只是结构体类型,不会分配内存空间 对结构体成员可以单独成员可以单独使用 3 初始化 第一种初始化方式:struct Student {
char name[20];
int age;
} ;
int test4() {
struct Student stu1 = { "lucy" ,20};
return 0;
}
第二种初始化方式
struct Student stu2;
strcpy(stu2.name, "lucy");
stu2.age = 20;
**注意:**数组的初始化用strcpy
第三种初始化方式struct Student {
char name[20];
int age;
} Lucy = { "lucy", 20 };
结构体中的成员可以单独使用
struct Student stu2;
strcpy(stu2.name, "lucy");
stu2.age = 20;
printf("%s,%d\n", stu2.name, stu2.age);
运行结果:lucy,20
错误:
错误 C4996 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. NDK_C c:\users\pf0zybaj\source\repos\ndk_c\ndk_c\lsn04.cpp 32
属性->预处理-> 添加: _CRT_SECURE_NO_WARNINGS
二 结构体数组结构体声明后,结构体数组与普通数据类型数组的数组一样
1 第一种方式初始化数组//能够识别,结构清晰,可以一眼看出初始化是否有问题
struct Student stu[3] = { { "lucy", 20 },{ "lilei", 32 },{ "Hanmeimei", 35 } };
//也支持不用{},但不建议:
//struct Student stu[3] = {"lucy", 20 , "lilei", 32 ,"Hanmeimei", 35 };
2 第二种方式初始化数组
struct Student s[5];
for (int i = 0;i < 5;i++) {
s[i].age = 20 + i;
strcpy(s[i].name, "lucy");
}
for (int i = 0;i < 5;i++) {
printf("s %d:%s,%d\n", i, s[i].name, s[i].age);
}
三 结构体指针
赋值
struct Student stu[3] = { { "lucy", 20 },{ "lilei", 32 },{ "Hanmeimei", 35 } };
struct Student * stud = stu;
单独定义,分配内存,初始化并使用
struct Student {
char * name;
int age;
};
int test4() {
struct Student * stud;
//分配内存
stud = (Student *)malloc(sizeof(struct Student) * 4);
//初始化
memset(stud, 0, sizeof(struct Student) * 4);
for (int i = 0;i age = 20 + i;
// (stud + i)->name = (char * )"lucy";
//也可写成如下,因为初始化的时候具备了数组属性
stud[i].age = 20 + i;
stud[i].name = (char *)"lucy";
}
for (int i = 0;i name, (stud + i)->age);
}
system("pause");
return 0;
}
运行结果:
stud 0: lucy, 20
stud 1: lucy, 21
stud 2: lucy, 22
stud 3: lucy, 23
struct Man {
int age;
char *name;
int(*Msg)(char *, int);
};
int message(char * str, int age) {
//创建一个窗口
MessageBox(0, TEXT("hello"), TEXT("Lijian"), 0);
return 0;
}
int test4() {
struct Man man;
man.age = 40;
man.name = (char *)"lijian";
man.Msg = message;
man.Msg((char *)man.name, man.age);
system("pause");
return 0;
}
五 结构体中添加结构体指针成员变量
struct Node {
int data;
Node * next;
};
//在单链表的末尾添加一个数据
int enqueNode(Node *head, int data) {
Node * node = (Node *)malloc(sizeof(Node));
if (node == NULL) {
return 0;
}
node->data = data;
node->next = NULL;
//用p是为了不改变head的值
Node *p = head;
while (p->next != NULL) {
p = p->next;
}
p->next = node;
return 1;
}
int test4() {
Node * list;
list = (Node *)malloc(sizeof(struct Node));
list->data = 0;
list->next = NULL;
int num = 10;
int i = 0;
for (i = 0; i next != NULL)
{
printf("%d \n", list->data);
list = list->next;
}
system("pause");
return 0;
}
输出:
0
1
2
3
4
5
6
7
8
9
lsn04