Tagged Questions
The define tag has no wiki summary.
47
votes
8answers
2k views
Why do most C developers use define instead of const?
In many programs a #define serves the same purpose as a constant. For example.
#define FIELD_WIDTH 10
const int fieldWidth = 10;
I commonly see the first form preferred over the other, relying on ...
35
votes
14answers
11k views
Should I use #define, enum or const?
In a C++ project I'm working on I have a flag kind of value which can have 4 values. Those 4 flags can be combined. Flags describe the records in database and can be:
new record
deleted record
...
28
votes
10answers
984 views
Shall I prefer constants over defines?
In C, shall I prefer constants over defines? I've reading a lot of code lately, and all of the examples make heavy use of defines.
23
votes
2answers
3k views
GCC dump preprocessor defines
Is there a way for gcc/g++ to dump its preprocessor defines from the command line?
I mean things like __GNUC__, __STDC__, and so on.
21
votes
4answers
785 views
Why is this C or C++ macro not expanded by the preprocessor?
Can someone points me the problem in the code when compiled with gcc 4.1.0.
#define X 10
int main()
{
double a = 1e-X;
return 0;
}
I am getting error:Exponent has no digits.
When i replace X ...
20
votes
8answers
755 views
Why would someone use #define to define constants?
It's simple question but why would someone use #define to define constants?
What's the difference between
#define sum 1 and const int sum = 1;
Thanks in advance`
18
votes
15answers
9k views
#ifdef vs #if - which is better/safer?
This may be a matter of style, but there's a bit of a divide in our dev team and I wondered if anyone else had any ideas on the matter...
Basically, we have some debug print statements which we turn ...
16
votes
2answers
2k views
Complete list of defines for Delphi versions
Does anyone know of a good place where I can find the complete list of version defines for all the Delphi versions, right up to Delphi 2009?
15
votes
4answers
2k views
What is the possible use for “#define for if (false) {} else for”?
In another question, I just spotted this little pearl of C wisom:
#define for if (false) {} else for
which caused MSVC to spit out "constant expression" warnings for a quite valid statement:
for ...
13
votes
8answers
1k views
Indenting #defines
I know that #defines etc. are normally never indented. Why?
I'm working in some code at the moment which has a horrible mixture of #defines, #ifdefs, #elses, #endifs, #etc. All these often mixed in ...
13
votes
12answers
3k views
#include header guard format?
I know it makes little difference to a project but, assuming you use #defined header guards for your C++ code, what format do you use? e.g. assuming a header called foo.hpp:
#ifndef __FOO_HPP__
...
...
12
votes
8answers
395 views
Is there a good reason for always enclosing a define in parentheses in c?
Clearly there are times where defines must have parentheses, like so:
#define WIDTH 80+20
int a = WIDTH * 2; //expect a==200 but a==120
So I have always parenthesized, even if it's just a single ...
12
votes
5answers
7k views
Is the sizeof(enum) == sizeof(int), always?
Is the sizeof(enum) == sizeof(int), always ?
Or is it compiler dependent?
Is it wrong to say, as complier are optimized for word lengths (memory alignment) ie y int is the word-size on a particular ...
10
votes
8answers
445 views
Possible to convert list of #defines into strings (C++)
Suppose I have a list of #defines in a header file for an external library. These #defines represent error codes returned from functions. I want to write a conversion function that can take as an ...
9
votes
6answers
355 views
What does ## in a #define mean?
What does this line mean? Especially, what does ## mean?
#define ANALYZE(variable, flag) ((Something.##variable) & (flag))
Edit:
A little bit confused still. What will the result be without ...
9
votes
8answers
2k views
low, mid, high level language, what's the difference?
I've heard these terms thrown around describing languages before. like C is not quite a low level language, C++ is a mid level, and Python is a High level language. I understand that it has to do ...
9
votes
4answers
18k views
#define in Java
I'm beginning to program in Java and I'm wondering if the equivalent to the C++ #define exists.
A quick search of google says that it doesn't, but could anyone tell me if something similar exists
...
9
votes
6answers
2k views
Does the C preprocessor strip comments or expand macros first?
Consider this (horrible, terrible, no good, very bad) code structure:
#define foo(x) // commented out debugging code
// Misformatted to not obscure the point
if (a)
foo(a);
bar(a);
I've seen two ...
8
votes
2answers
165 views
haskell - types - functions - trees
Hey, I'm an ambitious mathematician and haskell newbie. For haskell practice I want to implement a game where students/pupils should learn some algebra playfully.
As basic datatype I want to use a ...
8
votes
1answer
1k views
how do I print a #defined constant in GDB?
As per subject.
I have some constants hash defined like so:
#define CONST 40
I've set a break point in my program. How do I print the value of that constant? (I know I can just look at the source ...
8
votes
1answer
4k 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 ..?
...
8
votes
3answers
2k views
What C preprocessor conditional should I use for OS X specific code?
What C preprocessor conditional should I use for OS X specific code? I need to include a specific library if I am compiling for OS X or a different header if I am compiling for Linux.
I know there is ...
8
votes
3answers
691 views
How to tame the Windows headers (useful defines)?
In one of the answers to this question jalf spoke about useful define NOMINMAX, that could prevent from unwanted defining min/max macros. Are there other useful defines that can help to control ...
8
votes
3answers
1k views
What c preprocessor macros have already been defined, gcc?
In gcc, wow can I check what C preprocessor definitions are in place during the compilation of a C program, in particular what standard or platform-specific macrodefinitions are defined?
7
votes
3answers
3k 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 ...
7
votes
5answers
402 views
What does “#define STR(a) #a” do?
I'm reading the phoneME's source code. It's a FOSS JavaME implementation. It's written in C++, and I stumbled upon this:
// Makes a string of the argument (which is not macro-expanded)
#define STR(a) ...
7
votes
9answers
2k views
python equivalent of '#define func() ' or how to comment out a function call in python
my python code is interlaced with lots of function calls used for (debugging|profiling|tracing etc.)
for example:
import logging
logging.root.setLevel(logging.DEBUG)
logging.debug('hello')
j = 0
for ...
7
votes
7answers
2k views
Is there a strict definition for the words define, declare and assign?
I tend to use the words define, declare and assign interchangeably but this seems to cause offense to some people. Is this justified? Should I only use the word declare for the first time I assign to ...
7
votes
8answers
6k views
How efficient is define in PHP?
C++ preprocessor #define is totally different.
Is the PHP define() any different than just creating a var?
define("SETTING", 0);
$something = SETTING;
vs
$setting = 0;
$something = $setting;
...
7
votes
16answers
2k views
Can this macro be converted to a function?
While refactoring code and ridding myself of all those #defines that we're now taught to hate, I came across this beauty used to calculate the number of elements in a structure:
#define STRUCTSIZE(s) ...
6
votes
4answers
209 views
C++ Variables - declare and define. Inheritance
Let's have a C++ object A. There are two variables (VAR1 and VAR2) in A accessible to its children.
Object B extends A and has one private variable VAR3 it can also access VAR1 and VAR2. Each instance ...
6
votes
4answers
258 views
define USE(x) (x) = (x)
In one of the C source code files I found the following line (macro):
#define USE(x) (x) = (x)
It is used like this:
int method(Obj *context)
{
USE(context);
return 1;
}
After ...
6
votes
5answers
423 views
6
votes
4answers
445 views
Define's in Action script
I'm trying to pass a build number from Hudson into a Flex application.
I've found Adobe's document (http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html) on conditional ...
6
votes
6answers
775 views
What's the point of lambda in scheme?
I am learning scheme. I know how to use both lambda and let expressions.
However I'm struggling to figure out what the point is of using lambda. Can't you do everything with let that you can with ...
6
votes
7answers
191 views
value of c define changes unexpectedly
I have a lot of #define's in my code. Now a weird problem has crept up.
I have this:
#define _ImmSign 010100
(I'm trying to simulate a binary number)
Obviously, I expect the number to become ...
6
votes
11answers
3k views
Equivalent of #define in Java?
I'm writing a library that needs to have some code if a particular library is included. Since this code is scattered all around the project, it would be nice if users didn't have to comment/uncomment ...
6
votes
7answers
1k views
Why aren't there macros in C#?
When learning C# for the first time, I was astonished that they had no support for macros in the same capacity that exists in C/C++. I realize that the #define keyword exists in C#, but it is greatly ...
6
votes
11answers
2k views
Use #ifdefs and #define to optionally turn a function call into a comment
Is it possible to do something like this
#ifdef SOMETHING
#define foo //
#else
#define foo MyFunction
#endif
The idea is that if SOMETHING is defined, then calls to foo(...) become comments (or ...
5
votes
2answers
142 views
Does gcc define anything when -g is specified?
Shortly, I want to know if gcc (or g++. I need it in C, but also am curious about c++) define any special symbol if -g is enabled. Does it? And if so, what symbol?
(I was so sure this question would ...
5
votes
1answer
82 views
Use a variable to define a PHP function
I'd like to dynamically name a few functions using variables, like this:
$thing = 'some_function';
function $thing() {
echo 'hi!';
}
I know I can call a function using a variable like this:
...
5
votes
5answers
240 views
Accessing defined variable inside <<<HTML in php
I'm trying to figure out how to use a defined variable when using <<<HTML in php.
This is an example of what I want to achieve:
<?php
define('TEST','This is a test');
echo ...
5
votes
5answers
492 views
#define usage in C/C++
I need to write such a define in C/C++
#define scanf( fscanf(inf,
in order to replace each scanf( with fscanf(inf, literary
But I do not know how...
Thanks
5
votes
8answers
879 views
5
votes
9answers
262 views
How to conditionally determine which functions are called at compile time?
I'm working on implementing a very, very basic component system in C, but now I am at a point where I want to 'dynamically' call some functions. The set-up is very easy: the main program is simply an ...
5
votes
6answers
2k views
When to use function-like macros in C
I was reading some code written in C this evening, and at the top of
the file was the function-like macro HASH:
#define HASH(fp) (((unsigned long)fp)%NHASH)
This left me wondering, why would ...
5
votes
6answers
228 views
How to temporarily replace one primitive type with another when compiling to different targets?
How to easily/quickly replace float's for doubles (for example) for compiling to two different targets using these two particular choices of primitive types?
Discussion:
I have a large amount of c# ...
5
votes
3answers
1k views
.NET - Target platform/processor at compile time
Is there a #define in C# that allows me to know, at compile time, if I'm compiling for x86 (Win32) or x64 (Win64)?
5
votes
2answers
3k views
CUDA compiler (nvcc) macro
Is there a #define compiler (nvcc) macro of CUDA which I can use? (Like _WIN32 for Windows and so on.)
I need this for header code that will be common between nvcc and VC++ compilers. I know I can go ...
4
votes
4answers
62 views
How to define a class within another class' private in C++
Is it possible to define a class in another classes private and use it for an array? For instance:
class a
{
public:
private:
class b;
b myarray[10];
class b
{
public:
...