A macro is a rule or pattern that specifies how a certain input sequence (often a sequence of characters) should be mapped to an output sequence (also often a sequence of characters) according to a defined procedure. The mapping process that instantiates (transforms) a macro into a specific output sequence is known as macro expansion.
160
votes
73answers
20k views
What is the worst real-world macros/pre-processor abuse you've ever come across? [closed]
What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?
Please add a short snippet or story if it is really entertaining. The goal ...
98
votes
8answers
11k views
Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?
In many C/C++ macros I'm seeing the code of the macro wrapped in what seems like a meaningless do while loop. Here are examples.
#define FOO(X) do { f(X); g(X); } while (0)
#define FOO(X) if (1) { ...
53
votes
11answers
8k views
What makes lisp macros so special
Reading Paul Graham's essays on programming languages one would think that Lisp macros are the only way to go. As a busy developer working on other platforms I have not had the privledge of using lisp ...
39
votes
11answers
15k views
Is there a Macro Recorder for Eclipse?
Anybody know of a good eclipse plugin for recording and playing back macros? I've tried this one, but it didn't do me any good- seemed like it wasn't ready for primetime.
I know about editor ...
36
votes
42answers
5k views
When are C++ macros beneficial?
The C preprocessor is justifiably feared and shunned by the C++ community. In-lined functions, consts and templates are usually a safer and superior alternative to a #define.
The following macro:
...
27
votes
3answers
590 views
What does the tilde (~) in macros mean?
Seen on this site, the code shows macro invocations using a tilde in parentheses:
HAS_COMMA(_TRIGGER_PARENTHESIS_ __VA_ARGS__ (~))
// ^^^
What does it mean ...
27
votes
14answers
9k views
Awesome Visual Studio Macros [closed]
For a small community discussion, what are some essential Visual Studio macros you guys use? I just started learning about them, and want to hear what some of you guys can't live without.
26
votes
2answers
4k views
What's the use of do while(0) when we define a macro?
I'm reading the linux kernel and I found many macros like this:
#define INIT_LIST_HEAD(ptr) do { \
(ptr)->next = (ptr); (ptr)->prev = (ptr); \
} while (0)
Why do they use this rather than ...
25
votes
5answers
1k views
Lazy Evaluation vs Macros
I'm used to lazy evaluation from Haskell, and find myself getting irritated with eager-by-default languages now that I've used lazy evaluation properly. This is actually quite damaging, as the other ...
25
votes
5answers
876 views
Collection of Great Applications and Programs using Macros
I am very very interested in Macros and just beginning to understand its true power. Please help me collect some great usage of macro systems.
So far I have these constructs:
Pattern Matching:
...
24
votes
12answers
2k views
What is the best way to do loops in JavaScript
I have stumbled into several methods of looping in JavaScript, what I like the most is:
for(var i = 0; i < a.length; i++){
var element = a[i];
}
But as tested here ...
23
votes
24answers
4k views
Are C++ Templates just Macros in disguise?
I've been programming in C++ for a few years, and I've used STL quite a bit and have created my own template classes a few times to see how it's done.
Now I'm trying to integrate templates deeper ...
23
votes
8answers
7k views
likely/unlikely macros in the Linux kernel
I've been digging through some parts of the Linux kernel, and found calls like this:
if (unlikely(fd < 0))
{
/* Do something */
}
or
if (likely(!err))
{
/* Do something */
}
I've ...
22
votes
12answers
1k views
Rare cases where MACROs must be used
Debugging macros can take a lot of time. We are much better off
avoiding them except in the very rare cases when neither constants,
functions nor templates can do what we want.
What are the ...
22
votes
4answers
688 views
How to allow copy elision construction for C++ classes (not just POD C structs)
Consider the following code:
#include <iostream>
#include <type_traits>
struct A
{
A() {}
A(const A&) { std::cout << "Copy" << std::endl; }
A(A&&) { ...
21
votes
1answer
185 views
What is the reason for having unreserved identifiers as built-in macros in gcc?
Today I stumbled upon a rather interesting compiler error:
int main() {
int const unix = 0; // error-line
return unix;
}
Gives the following message with gcc 4.3.2 (yes, ancient...):
error: ...
20
votes
18answers
3k views
How far can LISP macros go?
I have read a lot that LISP can redefine syntax on the fly, presumably with macros. I am curious how far does this actually go? Can you redefine the language structure so much that it borderline ...
19
votes
2answers
11k views
Retrieving a c++ class name programatically
I was wondering if it is possible in C++ to retrieve the name of a class in string form without having to hardcode it into a variable or a getter. I'm aware that none of that information is actually ...
19
votes
3answers
2k views
Functional programming in C with macro “Higher Order Function” generators
Pay attention carefully because this is a hell of a question ;-)
I want to use template functions for generic collection actions (like search, foreach, etc.) in C while maintaining compiler static ...
17
votes
4answers
536 views
What is this mysterious macro plus sign in stdint.h?
Please see my code:
#include <stdint.h>
int main(int argc, char *argv[])
{
unsigned char s = 0xffU;
char ch = 0xff;
int val = 78;
((int8_t) + (78)); /*what does this mean*/
INT8_C(val); ...
17
votes
3answers
468 views
What is the difference between a C++ preprocessor macro with no arguments, and one with zero arguments
Is there any reason to prefer
#define MY_MACRO() ..stuff..
to
#define MY_MACRO ..stuff..
Don't use macros is not a valid answer :)
Thank you as usual!
17
votes
6answers
15k views
How to make a variadic macro (variable number of arguments)
I want to write a macro in C that accepts any number of parameters, not a specific number
example:
#define macro( X ) something_complicated( whatever( X ) )
where X is any number of parameters
I ...
17
votes
9answers
2k views
Pythonic macro syntax
I've been working on an alternative compiler front-end for Python where all syntax is parsed via macros. I'm finally to the point with its development that I can start work on a superset of the ...
16
votes
3answers
639 views
When did the idea of macros (user-defined code transformation) appear?
I have read McCarthy's 1960 paper on LISP and found no reference to anything that's similar to user-defined macros or normal order evaluation. I was wondering when marcos first appeared in programming ...
15
votes
6answers
1k views
C++: Can a macro expand “abc” into 'a', 'b', 'c'?
I've written a variadic template that accepts a variable number of char parameters, i.e.
template <char... Chars>
struct Foo;
I was just wondering if there were any macro tricks that would ...
15
votes
3answers
584 views
What are the advantages of scheme macros?
Why would anyone prefer Scheme macros over Common Lisp macros (and I genuinely want to know too, I'm not trying to be a troll)?
My experience as a Lisp newb is that Common Lisp style macros are much ...
15
votes
7answers
9k views
MIN and MAX in C
Where are MIN and MAX defined in C, if at all?
What is the best way to implement these, as generically and type safely as possible? (Compiler extensions/builtins for mainstream compilers preferred.)
15
votes
6answers
9k views
C++ preprocessor __VA_ARGS__ number of arguments
Simple question for which I could not find answer on the net. In variadic argument macros, how to find the number of arguments? I am okay with boost preprocessor, if it has the solution.
If it makes ...
15
votes
9answers
6k views
What useful macros have you created in Netbeans?
I use Netbeans (nightly build) for Ruby on Rails development and I'm looking to beef up my macros. I've created a few myself:
copy identifier:
select-identifier copy-to-clipboard
paste clipboard ...
14
votes
7answers
1k views
Automatically taking screenshots of program window
I'm looking for a software that combines macro recording with screenshot taking capabilities.
We have a software manual with a number of screenshots. When new version of software is released we need ...
14
votes
2answers
2k views
C/C++ macro/template blackmagic to generate unique name
Macros are fine.
Templates are fine.
Pretty much whatever it works is fine.
The example is OpenGL; but the technique is C++ specific and relies on no knowledge of OpenGL.
Precise problem:
I want an ...
14
votes
1answer
518 views
Mathematica: Unevaluated vs Defer vs Hold vs HoldForm vs HoldAllComplete vs etc etc
I'm bewildered by all the built-in Mathematica functions that purport to prevent evaluation in some way: Unevaluated, Defer, Hold, and over half a dozen of the form Hold*. The Mathematica ...
14
votes
11answers
5k views
Python Macros: Use Cases?
If Python had a macro facility similar to Lisp/Scheme (something like MetaPython), how would you use it?
If you are a Lisp/Scheme programmer, what sorts of things do you use macros for (other than ...
14
votes
5answers
21k views
Macro to save each sheet in an Excel workbook to separate CSV files
How do I save each sheet in an Excel workbook to separate CSV files with a macro?
I have an excel with multiple sheets and I was looking for a macro that will save each sheet to a separate CSV (comma ...
13
votes
1answer
440 views
C++ macro to log every line of code
During one of my recent discussions with my manager, he mentioned that one of his former clients used a C++ macro to log info about every line of code. All they had to do was enable an environment ...
13
votes
3answers
440 views
C++ void cast and operator comma in a #define
I found this while reading some source code.
#define MACRO(x) if((void) 0, (x)); else some_func();
I don't fully understand the reasons behind that operator comma and the void cast. This has ...
13
votes
13answers
752 views
Over reliance on macros
I feel, every time I read a C or C++ program, that half or more of it is just macros. I understand that macros can be cool but they are hard to track, debug, etc. Not to mention that most programming ...
13
votes
7answers
650 views
Examples of what Lisp's macros can be used for
I've heard that Lisp's macro system is very powerful. However, I find it difficult to find some practical examples of what they can be used for; things that would be difficult to achieve without them.
...
12
votes
4answers
406 views
Macro definition ARRAY_SIZE
I encountered the following macro definition when reading the globals.h in the Google v8 project.
// The expression ARRAY_SIZE(a) is a compile-time constant of type
// size_t which represents the ...
12
votes
1answer
220 views
Is a “transparent” macrolet possible?
I'd like to write a Clojure with-test-tags macro that wraps a bunch of forms, and adds some metadata to the name of each deftest form - specifically, add some stuff to a :tags key, so that I can play ...
12
votes
5answers
307 views
__FILE__ In .h what does it resolve to
Is there a specification on how the __FILE__ macro will be expanded if it is in a .h?
If I define in foo.h
#define MYFILE __FILE__
And include it in foo.c
#includes "foo.h"
void main(){
...
12
votes
5answers
419 views
Why does let require a vector?
I never really thought about this until I was explaining some clojure code to a coworker who wasn't familiar with clojure. I was explaining let to him when he asked why you use a vector to declare ...
12
votes
6answers
491 views
Can someone explain the concept of 'hygiene' to me (I'm a scheme programmer)?
So... I'm new to scheme r6rs, and am learning macros. Can somebody explain to me what is meant by 'hygiene'?
Thanks in advance.
12
votes
8answers
11k views
C Macro definition to determine big endian or little endian machine?
Is there a one line macro definition to determine the endianness of the machine. I am using the following code but converting it to macro would be too long.
unsigned char test_endian( void )
{
...
12
votes
4answers
954 views
Saving vim macros
Does anyone know how to properly save/reuse macros recorded inside of a vim editor?
12
votes
8answers
1k views
C/C++: How to use the do-while(0); construct without compiler warnings like C4127?
I'm often use do-while(0) construct in my #defines, for the reasons described in this answer. Also I'm trying to use as high as possible warning level from compiler to catch more potential problem and ...
12
votes
2answers
7k views
Qt question: What does the Q_OBJECT macro do? Why do all Qt objects need this macro?
I just started using Qt and noticed that all the example class definitions have the macro Q_OBJECT as the first line. What is the purpose of this preprocessor macro?
12
votes
15answers
2k views
What are C macros useful for?
I have written a little bit of C, and I can read it well enough to get a general idea of what it is doing, but every time I have encountered a macro it has thrown me completely. I end up having to ...
12
votes
7answers
4k views
Macro to replace C++ operator new
Is it possible to create macros to replace all forms of operator new with overloads that include additional args...say __FILE__ and __LINE__?
The trouble appears to be that operator new can either be ...
12
votes
11answers
5k views
How do you create a debug only function that takes a variable argument list? Like printf()
I'd like to make a debug logging function with the same parameters as printf. But one that can be removed by the pre-processor during optimized builds.
For example:
Debug_Print("Warning: value %d ...