c++中 -> 是什么意思,如何使用
在程序中多次出现如下代码:memory->destroy(BOP_index);memory->create(BOP_index,nall,"BOP_index");还有...
在程序中多次出现如下代码:
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;
很困惑->在这里是什么意思,有什么作用,请高手解答 展开
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;
很困惑->在这里是什么意思,有什么作用,请高手解答 展开
5个回答
展开全部
->是指针的指向运算符,通常与结构体一起使用。
具体使用方法可以参考如下程序:
#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进行赋值
}
展开全部
memory是指针类型
memory->destroy(Bop_index);
memory是一个指向一个类型的对象的指针,memory->destroy()是调用了里面的destroy函数
如下int timestep = update->ntimestep; 是将update所指向的对象的里面的ntimestep的成员变量的值赋值给timestep;
int *tag = atom->tag;看上去tag应该是一个int*的成员变量
memory->destroy(Bop_index);
memory是一个指向一个类型的对象的指针,memory->destroy()是调用了里面的destroy函数
如下int timestep = update->ntimestep; 是将update所指向的对象的里面的ntimestep的成员变量的值赋值给timestep;
int *tag = atom->tag;看上去tag应该是一个int*的成员变量
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
-> 结构或类的指针 的成员变量或成员函数。
atom->tag , atom是 结构或类(声明为指针),tag 是它的成员, atom->tag 是值。
memory->destroy (BOP_index); destroy 是memory的成员函数,memory 类(声明为指针)。
其余 类推。
atom->tag , atom是 结构或类(声明为指针),tag 是它的成员, atom->tag 是值。
memory->destroy (BOP_index); destroy 是memory的成员函数,memory 类(声明为指针)。
其余 类推。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是类或结构体指针访问其成员变量或函数的方式
如struct 或者 class Memory
{
public:
void destroy ();
void create();
int a;
}
Memory* memory = new Memory();
memory->destory();
int b = memory->a;
其实 . 和 -> 都是一个意思,访问成员变量或者函数,区别->用于指针变量
如struct 或者 class Memory
{
public:
void destroy ();
void create();
int a;
}
Memory* memory = new Memory();
memory->destory();
int b = memory->a;
其实 . 和 -> 都是一个意思,访问成员变量或者函数,区别->用于指针变量
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
对象调用方法
这么基础的东东书上有的,好好学基础吧
这么基础的东东书上有的,好好学基础吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询