ポインタ、参照、アドレスに頭を悩ませようとしていますが、それを取得したと思うたびに、予期しない何かがポップアップします。
この例で値を設定するために構造を逆参照する必要がないのはなぜですか?
// pointer_tet.cpp
#include <iostream>
struct example
{
char name[20];
int number;
};
int main()
{
using namespace std;
example anExample = {"Test", 5};
example * pt = &anExample;
pt->number = 6;
cout << pt->number << endl;
int anotherExample = 5;
int * pd = &anotherExample;
*pd = 6;
cout << *pd << endl;
return 0;
}
ありがとう!
編集:あなたの答えをありがとう!私を混乱させたのは、* pt.number=6を設定できなかったことです。