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 ...
572
votes
4answers
47k views
What is “:-!!” in C code?
I bumped into this strange macro code in /usr/include/linux/kernel.h:
/* Force a compilation error if condition is true, but also produce a
result (of value 0 and type size_t), so the expression ...
217
votes
9answers
19k views
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) { ...
83
votes
12answers
13k 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 ...
74
votes
10answers
24k 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 ...
67
votes
1answer
1k views
Documenting Scala 2.10 macros
I'll start with an example. Here's an equivalent of List.fill for tuples as a macro in Scala 2.10:
import scala.language.experimental.macros
import scala.reflect.macros.Context
object TupleExample {
...
56
votes
2answers
11k views
What's the use of do while(0) when we define a macro? [duplicate]
Possible Duplicate:
Do-While and if-else statements in C/C++ macros
I'm reading the linux kernel and I found many macros like this:
#define INIT_LIST_HEAD(ptr) do { \
(ptr)->next = ...
53
votes
39answers
9k 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:
...
53
votes
14answers
20k 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.
52
votes
9answers
63k 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.)
48
votes
8answers
18k 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 ...
46
votes
5answers
38k 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 ...
38
votes
1answer
29k views
Why are #ifndef and #define used in c++ header files
I have been seeing code like this usually in the start of header files
#ifndef HEADERFILE_H
#define HEADERFILE_H
and at the end of the file is
#endif
I am confused about the purpose of this ..?
...
36
votes
3answers
4k views
What predefined macro can I use to detect clang?
I'm trying to detect the compiler used to compile my source code. I can easily find predefined macros to check for MSVC or GCC (see http://predef.sourceforge.net/ for example), but I cannot find any ...
36
votes
6answers
1k 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:
...
33
votes
3answers
16k 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?
32
votes
2answers
12k views
Creating C macro with ## and __LINE__ (token concatenation with positioning macro)
I want to create a C macro that creates a function with a name based
on the line number.
I thought I could do something like (the real function would have statements within the braces):
#define ...
31
votes
5answers
2k 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 ...
30
votes
12answers
27k 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 )
{
...
30
votes
4answers
8k views
Can I record/play Macros in Visual Studio 2012?
Apparently macros were dropped from VS 2012.
Is there a plugin/extension/tool that will let me record & play keyboard macros (much like the record/play temporary macro in VS 2010)?
E.g. I ...
30
votes
3answers
1k 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 ...
29
votes
4answers
5k views
Saving vim macros
Does anyone know how to properly save/reuse macros recorded inside of a vim editor?
29
votes
7answers
8k views
__FILE__ macro shows full path
The standard predefined MACRO __FILE__ available in C shows the full path to the file. Is there any way to short the path? I mean instead of
/full/path/to/file.c
I see
to/file.c
or
file.c
28
votes
24answers
6k 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 ...
28
votes
3answers
24k 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 ...
27
votes
4answers
17k views
How to identify platform/compiler from preprocessor macros?
I'm writing a cross-platform code, which should compile at linux, windows, mac os. On windows, I must support visual studio and mingw.
There are some pieces of platform-specific code, which I should ...
27
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 ...
27
votes
1answer
24k views
C multi-line macro: do/while(0) vs scope block [duplicate]
Possible Duplicates:
What’s the use of do while(0) when we define a macro?
Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?
do { … } while ...
26
votes
14answers
4k views
How far can LISP macros go? [closed]
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 ...
26
votes
12answers
2k 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 ...
26
votes
1answer
481 views
+50
Scala macros and the JVM's method size limit
I'm replacing some code generation components in a Java program with Scala macros, and am running into the Java Virtual Machine's limit on the size of the generated byte code for individual methods ...
25
votes
3answers
1k views
Real-world use of X-Macros
I just learned of X-Macros. What real-world uses of X-Macros have you seen? When are they the right tool for the job?
24
votes
13answers
9k views
What useful macros have you created in Netbeans? [closed]
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 ...
24
votes
3answers
3k 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 ...
23
votes
7answers
21k 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 ...
23
votes
3answers
15k views
23
votes
7answers
13k views
__CLASS__ macro in C++
Is there a __CLASS__ macro in C++ which gives the class name similar to __FUNCTION__ macro which gives the function name
23
votes
1answer
330 views
Can macros be overloaded by number of arguments?
How does this work? How can a C99/C++11 variadic macro be implemented to expand to different things on the sole basis of how many arguments are given to it?
23
votes
4answers
920 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&&) { ...
22
votes
4answers
1k views
Explanation of C++ FAQ's unsafe macro?
According to the C++ FAQ, macros are evil:
[9.5] Why should I use inline functions instead of plain old #define
macros?
Because #define macros are evil in 4 different ways: evil#1, evil#2,
...
22
votes
3answers
434 views
Why this macro is defined as ({ 1; })?
In multiple ARM backend of Linux, I'm seeing in files clkdev.h this macro definition:
#define __clk_get(clk) ({ 1; })
See for example ./arch/arm/mach-versatile/include/mach/clkdev.h
This macro is ...
21
votes
5answers
43k 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 ...
21
votes
2answers
19k views
Implicit declaration of function - C99
I am currently using Xcode 4, and in my .pch file I have this macro:
#define localize(s) NSLocalizedString((s), nil).
When I try to use this macro in some .m file, I receive this warning: Implicit ...
21
votes
6answers
7k views
Standard alternative to GCC's ##__VA_ARGS__ trick?
There is a well-known problem with empty args for variadic macros in C99.
example:
#define FOO(...) printf(__VA_ARGS__)
#define BAR(fmt, ...) printf(fmt, __VA_ARGS__)
FOO("this works fine");
...
21
votes
7answers
449 views
C macros: advantage/intent of apparently useless macro
I have some experience in programming in C but I would not dare to call myself proficient.
Recently, I encountered the following macro:
#define CONST(x) (x)
I find it typically used in expressions ...
21
votes
1answer
378 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
10answers
2k views
What are common anti-patterns when using VBA
I have being coding a lot in VBA lately (maintenance and new code), specifically with regards to Excel automation etc. = macros.
Typically most of this has revolved around copy/paste, send some ...
20
votes
1answer
7k views
how to set #ifdef or conditon?
Sorry for asking very basic question. I would like to set OR condition in #ifdef directive.?
How to do that ?
I tried
#ifdef LINUX | ANDROID
...
..
#endif
It did not work? What is the proper way?
20
votes
7answers
3k 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 ...
19
votes
11answers
16k views
Why use Macros in C? [duplicate]
Possible Duplicate:
What are C macros useful for?
Every few months I get an itch to go learn some bit of C that my crap college programming education never covered. Today it's macros. My ...
19
votes
16answers
10k 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 ...


