#include "stdafx.h"
#include <iostream>
using namespace std;
class thing{
public:
int stuff, stuff1, stuff2;
void thingy(int stuff, int *stuff1){
stuff2=stuff-*stuff1;
}
}
int main(){
thing t;
int *ptr=t.stuff1;
t.thingy(t.stuff, *ptr);
}
我一直在练习 C++ 中的课程和指针。我要做的是让函数thingy通过传递指向stuff1值的指针来修改事物类中的stuff2数据成员。我该怎么做呢?