How to generate random variable names in C++ using macros? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:55:38Z http://stackoverflow.com/feeds/question/1082192 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros 0 How to generate random variable names in C++ using macros? freitass 2009-07-04T13:16:54Z 2009-11-04T17:00:06Z <p>I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of the first variable. For instance:</p> <pre><code>#define MY_MACRO int my_variable_[random-number-here] = getCurrentTime(); </code></pre> <p>The other motivation to use that is to avoid selecting certain name to the variable so that it be the same as a name eventually chosen by the developer using the macro.</p> <p>Is there a way to generate random variable names inside a macro in C++?</p> <p>-- Edit --</p> <p>I mean unique but also random once I can use my macro twice in a block and in this case it will generate something like:</p> <pre><code>int unique_variable_name; ... int unique_variable_name; </code></pre> <p>In this case, to be unique both variable names have to be random generated.</p> http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1082198#1082198 0 Answer by mizipzor for How to generate random variable names in C++ using macros? mizipzor 2009-07-04T13:22:27Z 2009-07-04T13:22:27Z <p>While I don't think its even possible, you should seriously consider making a class out of this.</p> <p>If you want a random element in a random array to hold a certain value, you can do this:</p> <pre><code>std::vector&lt; std::vector&lt;int&gt; &gt; m_vec; </code></pre> <p>Then wrap it in a class, so the developer can only set a number:</p> <pre><code>void set(int foo) { m_vec[random()][random()] = foo; } </code></pre> <p>Is there any reason why you want it a macro? Random variable name sounds dangerous, what if it picks something already defined somewhere else in the code?</p> http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1082211#1082211 5 Answer by popcnt for How to generate random variable names in C++ using macros? popcnt 2009-07-04T13:29:00Z 2009-07-04T13:29:00Z <p>Add M4 to your build flow? This macro language has some stateful capabilities, and can successfully be intermingled with CPP macros. This is probably not a standard way to generate unique names in a C environment, though I've been able to sucessfully use it in such a manner.</p> <p>You probably do not not want random, BTW, based on the way you posed your question. You want <em>unique</em>.</p> <p>You could use <code>__FILE__</code> and <code>__LINE__</code> in the macro expansion to get you the uniqueness you seem to be going for... those metavariables get defined within the source file context, so be careful to make sure you get what you are looking for (e.g., perils of more than one macro on the same line).</p> http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1082299#1082299 3 Answer by D.Shawley for How to generate random variable names in C++ using macros? D.Shawley 2009-07-04T14:27:26Z 2009-07-04T14:27:26Z <p>Generating unique names in the preprocessor is difficult. The closest you can get is to mangle <code>__FILE__</code> and <code>__LINE__</code> into the symbol as <a href="http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1082211#1082211">popcnt</a> suggests. If you really need to generate unique global symbol names, then I would follow his suggestion about using something like M4 or a Perl script in your build system instead.</p> <p>You might not need unique names. If your macro can impose a new scope, then you can use the same name since it will simply shadow other definitions. I usually follow the common advice of wrapping macros in <code>do { ... } while (0)</code> loops. This only works for macros which are statements - not expressions. The macro can update variables using <em>output parameters</em>. For example:</p> <pre><code>#define CALC_TIME_SINCE(t0, OUT) do { \ std::time_t _tNow = std::time(NULL); \ (OUT) = _tNow - (t0); \ } while (0) </code></pre> <p>If you follow a <a href="http://www.c-faq.com/cpp/index.html" rel="nofollow">few rules</a>, you are usually pretty safe:</p> <ol> <li>Use leading underscores or similar naming conventions for symbols defined within the macro. This will prevent problems associated with a parameter using the same symbol from occurring.</li> <li>Only use the input parameters once and always surround them with parentheses. This is the only way to make macros work with expressions as input.</li> <li>Use the <code>do { ... } while (0)</code> idiom to ensure that the macro is only used as a statement and to avoid other textual replacement problems.</li> </ol> http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1082745#1082745 1 Answer by TokenMacGuy for How to generate random variable names in C++ using macros? TokenMacGuy 2009-07-04T18:28:01Z 2009-07-04T18:28:01Z <p>Instead of having the preprocesser create a name, you could possibly let the macro user give you a name.</p> <pre><code>#define MY_MACRO(varname) int varname = getCurrentTime(); </code></pre> http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1675203#1675203 0 Answer by benoit for How to generate random variable names in C++ using macros? benoit 2009-11-04T17:00:06Z 2009-11-04T17:00:06Z <p>use <strong>COUNTER</strong> if available</p> <h1>define uniquename static bool sb_##<strong>COUNTER</strong> = false;</h1>