首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
JNI_day02
】的更多相关文章
JNI_day02
二级指针 指向指针变量的指针,保存指针的地址 结构体 struct Student //struct Stdent 学生结构体类型 { int id;//成员 char name[20]; int age; float score; }; 其中,Student为结构体名,struct Student表示结构体类型,相当于int等基本数据类型 访问结构体变量中的成员变量 (p).id = 3 <=> stu.id <=> p->id = 3 其中->为指向运算符,用于给结…