What's the best portable way to represent pointer as string in C++? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:26:47Zhttp://stackoverflow.com/feeds/question/947079http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c2What's the best portable way to represent pointer as string in C++?Milan Babuškov2009-06-03T20:35:41Z2009-09-01T11:14:10Z
<p>I need to represent pointers as strings to the user. Sometimes the values might be saved to a file and transferred to a computer with different architecture (32 vs 64 bit is the main issue currently) and loaded from text file to be compared - I'm only going to compare loaded values <em>with each other</em>, but I'd still prefer to compare numbers than strings.</p>
<p>I'm currently using:</p>
<pre><code>SomeClass* p;
...
printf("%ld", (uintptr_t)p);
</code></pre>
<p>but I wonder if this is portable (Windows and Linux are only important at this stage though), and whether this would break once 128-bit systems show up?</p>
<p><strong>Edit</strong>: unless I decide to use uint64_t, and decide that 64bit is the rooftop, this cannot be done because some 64bit pointer might be outside 32bit integer range. So, I decided that it would be safer to compare strings even if it's slower.</p>
http://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c/947082#94708220Answer by Chris Jester-Young for What's the best portable way to represent pointer as string in C++?Chris Jester-Young2009-06-03T20:36:32Z2009-06-03T20:36:32Z<p>For pointers, always use <code>%p</code>---it's a format specifier specially designed for printing pointers in the right format. :-)</p>
http://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c/947088#9470886Answer by Neil Butterworth for What's the best portable way to represent pointer as string in C++?Neil Butterworth2009-06-03T20:37:38Z2009-06-03T20:37:38Z<p>printf has a %p formatter which I believe is standardised:</p>
<pre><code>printf( "%p", p );
</code></pre>
<p>but as you are using C++, ostreams already overload pointer output:</p>
<pre><code>#include <iostream>
using namespace std;;
class A {};
int main() {
A a;
cout << &a << endl;
}
</code></pre>
<p>produces:</p>
<pre><code>0x22ff6f
</code></pre>
http://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c/947091#9470919Answer by Fred Larson for What's the best portable way to represent pointer as string in C++?Fred Larson2009-06-03T20:37:54Z2009-06-03T20:37:54Z<p>I'd do this:</p>
<pre><code>std::cout << p;
</code></pre>
<p>If you have your heart set on cstdio:</p>
<pre><code>printf("%p", p);
</code></pre>
http://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c/947095#9470953Answer by eduffy for What's the best portable way to represent pointer as string in C++?eduffy2009-06-03T20:38:46Z2009-06-03T20:38:46Z<p>Are you looking for the <code>%p</code> formatting string?</p>
<pre><code>printf("%p", p);
</code></pre>
<p>This'll give the hex-encoded address the pointer points to (and, I think, formats <code>NULL</code>s for you as well).</p>
http://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c/947150#9471500Answer by Paul J. Lucas for What's the best portable way to represent pointer as string in C++?Paul J. Lucas2009-06-03T20:48:05Z2009-06-03T20:48:05Z<p>I would have done:</p>
<pre><code>cout << p << endl;
</code></pre>
<p>Strings (of the same encoding) are portable. If you want to compare them as pointers, you have to parse the string back into an <code>unsigned long</code> first.</p>
<p>As for 128-bit systems, they're a ways off. WIth 64 bits, you can directly address 16.8 million terabytes of RAM.</p>
http://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c/1361873#13618730Answer by Shobhit Mitttal for What's the best portable way to represent pointer as string in C++?Shobhit Mitttal2009-09-01T11:14:10Z2009-09-01T11:14:10Z<p>It can also be done as</p>
<p>printf("%#x", p);</p>
<p>This would ensure similar format (0x...) across platforms.</p>