我没有做任何事情,因为我早就在C#进行方案规划,我的C++天早前。 我认为,我应该重新了解我的知识,因为这里还有另一个问题,我刚刚与他们一起开会。 我理解所有这些征兆,但我可以指出,如何把点人的讲话写到村里......。
char c = c ;
char d = d ;
char e = e ;
unsafe
{
char* cp = &d;
//How do I write the pointer address to the console?
*cp = f ;
cp = &e;
//How do I write the pointer address to the console?
*cp = g ;
cp = &c;
//How do I write the pointer address to the console?
*cp = h ;
}
Console.WriteLine("c:{0}", c); //should display "c:h";
Console.WriteLine("d:{0}", d); //should display "d:f";
Console.WriteLine("e:{0}", e); //should display "e:g";
使用<代码>Console.WriteLine(*cp);使我对点人地址的当前价值......如果我想要显示实际地址的话?