1

我今天观察到一些奇怪的行为,代码如下:

编码 :

#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通过取消引用具有奇怪地址的指针来更改成员的值?

谢谢你。

4

2 回答 2

5

我认为出现“奇怪”的东西是因为cout认为它是一个 cstring,即一个以 0 结尾的字符数组,因此它不会按您的预期打印地址。而且由于您的“字符串”不是以 0 结尾的,因此它所能做的就是遍历内存,直到遇到0. 总而言之,您实际上并没有打印 address

为什么我仍然可以通过取消引用具有奇怪地址的指针来更改成员 c 的值

如上所述,地址并不奇怪。在你的代码Cptr中指向一个有效的内存位置,你可以用它做几乎任何你想做的事情。

于 2012-07-28T08:26:07.793 回答
5

考虑像这样修复代码:

std::cout << "The Address \t: " << (void *)Cptr << std::endl ;

有一个std::ostream& operator<< (std::ostream& out, const char* s );需要 achar*所以你必须转换void*为打印一个地址,而不是它“指向”的字符串

于 2012-07-28T08:26:15.410 回答