在程序中多次出现如下代码:memory->destroy (BOP_index);memory->create (BOP_index,nall,"BOP_index");还有int *tag = atom->tag;int timestep = update->ntimestep;int newton_pair = force->newton_pair;很困惑->在这里是什么意思,有什么作用,请高手解答
1 回答
当年话下
TA贡献1890条经验 获得超9个赞
->是指针的指向运算符,通常与结构体一起使用。
具体使用方法可以参考如下程序:
#include<stdio.h>
struct stu // 定义一个结构体
{
char name[10]; // 姓名
int num; // 学号
int age; // 年龄
};
void main()
{
struct stu *s; // 定义一个结构体指针
char str[]="ZhangLi";
s->name = str; // 对结构体中的成员变量name进行赋值
s->num = 2015120; // 对结构体中的成员变量num进行赋值
s->age = 18; // 对结构体中的成员变量age进行赋值
}
- 1 回答
- 0 关注
- 783 浏览
添加回答
举报
0/150
提交
取消