What's the best portable way to represent pointer as string in C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:26:47Z http://stackoverflow.com/feeds/question/947079 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/947079/whats-the-best-portable-way-to-represent-pointer-as-string-in-c 2 What's the best portable way to represent pointer as string in C++? Milan Babuškov 2009-06-03T20:35:41Z 2009-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#947082 20 Answer by Chris Jester-Young for What's the best portable way to represent pointer as string in C++? Chris Jester-Young 2009-06-03T20:36:32Z 2009-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#947088 6 Answer by Neil Butterworth for What's the best portable way to represent pointer as string in C++? Neil Butterworth 2009-06-03T20:37:38Z 2009-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 &lt;iostream&gt; using namespace std;; class A {}; int main() { A a; cout &lt;&lt; &amp;a &lt;&lt; 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#947091 9 Answer by Fred Larson for What's the best portable way to represent pointer as string in C++? Fred Larson 2009-06-03T20:37:54Z 2009-06-03T20:37:54Z <p>I'd do this:</p> <pre><code>std::cout &lt;&lt; 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#947095 3 Answer by eduffy for What's the best portable way to represent pointer as string in C++? eduffy 2009-06-03T20:38:46Z 2009-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#947150 0 Answer by Paul J. Lucas for What's the best portable way to represent pointer as string in C++? Paul J. Lucas 2009-06-03T20:48:05Z 2009-06-03T20:48:05Z <p>I would have done:</p> <pre><code>cout &lt;&lt; p &lt;&lt; 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#1361873 0 Answer by Shobhit Mitttal for What's the best portable way to represent pointer as string in C++? Shobhit Mitttal 2009-09-01T11:14:10Z 2009-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>