我今天观察到一些奇怪的行为,代码如下:
编码 :
#include <iostream>
struct text
{
char c;
};
int main(void)
{
text experim = {'b'};
char * Cptr = &(experim.c);
std::cout << "The Value \t: " << *Cptr << std::endl ;
std::cout << "The Address \t: " << Cptr << std::endl ; //Print weird stuff
std::cout << "\n\n";
*Cptr = 'z'; //Attempt to change the value
std::cout << "The New Value \t: " << *Cptr <<std::endl ;
std::cout << "The Address \t: " << Cptr << std::endl ; //Weird address again
return 0;
}
问题:
1.)我唯一的问题是为什么cout theAddress
上面的代码会出现一些奇怪的值?
2.)为什么我仍然可以c
通过取消引用具有奇怪地址的指针来更改成员的值?
谢谢你。