Tagged Questions

32
votes
8answers
782 views

What's the reasoning behind putting constants in if statements first?

I was looking at some example C++ code for a hardware interface I'm working with and noticed a lot of statements along the following lines: if ( NULL == pMsg ) return rv; I'm sure I've heard people ...
22
votes
7answers
9k views

Is it better in C++ to pass by value or pass by constant reference?

Is it better in C++ to pass by value or pass by constant reference? I am wondering which is better practice. I realize that pass by constant reference should provide for better performance in the ...
20
votes
10answers
1k views

An efficient way to compute mathematical constant e

The standard representation of constant e as the sum of the infinite series is very inefficient for computation, because of many division operations. So are there any alternative ways to compute the ...
16
votes
6answers
711 views

correct idiom for std::string constants?

I have a map that represents a DB object. I want to get 'well known' values from it std::map<std::string, std::string> dbo; ... std::string val = map["foo"]; all fine but it strikes me ...
12
votes
5answers
256 views

Making sense of where “const” goes in a declaration

I am having trouble finding an intuitive pattern for the way const is used in declarations in the C and C++ languages. Here are some examples: const int a; //Const integer int const a; //Const ...
11
votes
5answers
458 views

How to force GCC to put constants in memory instead of generating them?

I have a lot of constant arrays defined in several functions. Something like the following: const float values[4] = {-4312.435f, -432.44333f, 4.798, 7898.89}; After inspecting gcc assembler ...
9
votes
5answers
426 views

non-integral constants

I want a header file with a non-integral constant in it, e.g. a class. Note the constant does not need to be a compile-time constant. static const std::string Ten = "10"; This compiles but is ...
8
votes
4answers
931 views

C++ - enum vs. const vs. #define

At the end of the article here: http://www.learncpp.com/cpp-tutorial/45-enumerated-types/, it mentions the following: Finally, as with constant variables, enumerated types show up in the debugger, ...
8
votes
5answers
506 views

In C++, are static initializations of primitive types to constant values thread-safe?

i.e., would the following be expected to execute correctly even in a multithreaded environment? int dostuff(void) { static int somevalue = 12345; return somevalue; } Or is it possible for ...
8
votes
8answers
8k views

How to declare a static const char* in your header file?

I'd like to define a constant char* in my header file for my .cpp file to use. So I've tried this: private: static const char *SOMETHING = "sommething"; Which brings me with the following ...
8
votes
6answers
1k views

C/C++: Optimization of pointers to string constants

Have a look at this code: #include <iostream> using namespace std; int main() { const char* str0 = "Watchmen"; const char* str1 = "Watchmen"; char* str2 = "Watchmen"; char* ...
7
votes
3answers
227 views

Constant combining in optimizing compilers

I have a header file containing a lot of small inline functions. Most of them happen to have constant data. Since these functions are performance critical, the way they handle constants becomes ...
7
votes
5answers
266 views

Sharing constants across languages

I have a long list of constants that I need access to in several projects which are in different languages(Verilog, C, C++ and C#). Rather than repeating them in each language, is there a good way to ...
7
votes
14answers
521 views

Your opinion on declaring constants inside methods…?

A developer in a team I'm supervising prefers declaring variables as constants in his tests, e.g. const int someValue = 1; (rather than just int someValue = 1;). When I saw this I found it a bit odd ...
6
votes
3answers
101 views

constant pointer variables in c++ [closed]

Possible Duplicate: what is the difference between const int*, const int * const, int const * I know 2 variations of pointer variables in c++. say I have mystruct{ int num; } ...
6
votes
4answers
434 views

c/c++ optimize for constant variable in calling functions

C/C++ compilers optimize single layer functions with constant parameters (known at compile time) only when using -Os, -O1 and -O2. They do not optimize all the layers. Only -O3 can do that. gcc is ...
6
votes
7answers
3k views

Where to declare/define class scope constants in C++?

I'm curious about the benefits/detriments of different constant declaration and definition options in C++. For the longest time, I've just been declaring them at the top of the header file before the ...
6
votes
13answers
562 views

Memorable 32-bit value as a constant

I am looking for a memorable 32-bit value to be used as a constant. If possible, it should be somewhat funny too. So far, I have come up with these two: 0xcafebabe 0xdeaddad Can you please ...
6
votes
6answers
193 views

Constant strings address

I have several identical string constants in my program: const char* Ok() { return "Ok"; } int main() { const char* ok = "Ok"; } Is there guarantee that they are have the same address, i.e. ...
6
votes
7answers
4k views

C++ binary constant/literal

I'm using a well known template to allow binary constants template< unsigned long long N > struct binary { enum { value = (N % 10) + 2 * binary< N / 10 > :: value } ; }; ...
6
votes
2answers
3k views

How can I embed unicode string constants in a source file?

I'm writing some unit tests which are going to verify our handling of various resources that use other character sets apart from the normal latin alphabet: Cyrilic, Hebrew etc. The problem I have is ...
5
votes
5answers
188 views

How can I specify a [DllImport] path at runtime?

In fact, I got a C++ (working) DLL that I want to import into my C# project to call it's functions. It does work when I specify the full path to the DLL, like this : string str = ...
5
votes
5answers
96 views

assigning string::c_str() to a const char* when the string goes out of scope

I have a doubt on basic C++ usage. The code below, compiled with gcc/LInux, prints out correctly. The string test goes out of scope so also its c_str() value should be invalid isn't it? Am I wrong ...
5
votes
3answers
169 views

Which data structure to use for huge but constant dictionary in C++

I have to use a huge dictionary with integer (or enum) keys and string values. But this is totally constant. No way to change in runtime. Is there a way (using templates etc.) to retrieve dictionary ...
5
votes
4answers
127 views

what makes const at the lower levels of the machine?

When making something const in C++ what makes it that you cannot for example implicitly pass it a non-const at the lower levels of the machine? How is it determined by the machine that this is const? ...
5
votes
5answers
245 views

Can overloading is possible with two version of function, constant member function and function without const

I just came across various overloading methods like type of parameter passed, varying number of parameters, return type etc. I just want to know that can I overload a function with following two ...
5
votes
7answers
244 views

Simple question about C++ constant syntax

Here is some code copied from Thinking in C++ Vol1 Chapter 10. #include <iostream> using namespace std; int x = 100; class WithStatic { static int x; static int y; ...
5
votes
3answers
3k views

C++ where to initialize static const

I have a class class foo { public: foo(); foo( int ); private: static const string s; }; Where is the best place to initialize the string s in the source file?
4
votes
2answers
103 views

How do I turn a macro into a string using cpp?

GNU's cpp allows you to turn macro parameters into strings like so #define STR(x) #x Then, STR(hi) is substituted with "hi" But how do you turn a macro (not a macro parameter) into a string? Say ...
4
votes
5answers
273 views

casting non const to const in c++

I know that you can use <const_cast> to cast a const to a non-const. But what should you use if you want to cast non-const to const?
4
votes
9answers
604 views

Is there a reason to use enum to define a single constant in C++ code?

The typical way to define an integer constant to use inside a function is: const int NumbeOfElements = 10; the same for using within a class: class Class { ... static const int ...
4
votes
7answers
1k views

Best approach to define a constant (used in a constant expression) in the class?

I am trying to define a constant BUFFER_LENGTH for my class for a given usecase. //1. Using preprocessor declaration //#define BUFFER_LENGTH 12 //2.Global constant //const int BUFFER_LENGTH = 12; ...
4
votes
4answers
994 views

How does one avoid accidentally redeclaring global constants in C++?

I have a template matrix class class defined in a header called "Matrix.h". Certain matrices are used repeatedly in my program. I thought that I would define these in the "Matrix.h" header file, like ...
4
votes
8answers
2k views

C++ best way to define cross-file constants

I am working on a game and have an interesting question. I have some game-wide constant values that I want to implement in one file. Right now I have something like this: constants.cpp extern const ...
3
votes
2answers
65 views

C++ - constant value for reference parameter?

Usually, parameter values are copied when being passed on. Using a reference may save memory, especially for big structs. However, in this case: void foo( int parameter = 7 ); void bar( const ...
3
votes
4answers
109 views

map initialization: object code is 50 times larger than source code

I am working in C++ with BCC32. I initialized a map with about 1000 entries like this: extern map<string, string> city ; void region_init_0 (void) { city["abc01"] = "Brussels" ; city["xyz03"] ...
3
votes
3answers
131 views

Homework: Avoiding magic numbers

For my c++ homework assignment, I have to write a Tic-Tac-Toe Win32 console application. I've created a grid on the screen using a coordinate system and I use _getch() and ...
3
votes
4answers
104 views

How can I process C++ definitions in C#?

I have a bunch of *.h files, containing only c-style definitions like #define ALPHA_REACTOR_CODE 99641 #define BETA_REACTOR_CODE 99642 #define GAMMA_REACTOR_CODE 99643 #define DELTA_REACTOR_CODE ...
3
votes
6answers
129 views

Is there any benefit to declaring a const rather than a variable inside a function?

If I have a function which only exists for a short amount of time, does making the list of colors a constant make a difference? string getrandcolor(){ const string colors[5] = {"red", "blue", ...
3
votes
1answer
128 views

C++ numeric_limit min/max not a constant [closed]

Possible Duplicate: Why is std::numeric_limits<T>::max() a function? I was wondering if someone could explain the reasoning behind why in std::numeric_limit min and max are methods ...
3
votes
5answers
374 views

Which is the better practice: global constant or #define? [closed]

Possible Duplicate: C++ - enum vs. const vs. #define Before I used #define I used to create constants in my main function and pass them where they were needed. I found that I passed them ...
3
votes
4answers
138 views

How to check if a parameter of an inline function is known at compile time?

I have a performance critical inline function. It generates some data, based on a parameter. I want the compiler to optimize the data generation for all invocations, where the parameter is known at ...
3
votes
3answers
323 views

How should I implement a static collection of Strings in my class

I am very new to C++ so this might be an easy question to answer. I am writing a class (Person) and when a Person is created it should be assigned a random name from a collection of predefined names. ...
3
votes
3answers
433 views

Objective-C/C++ constants

EDIT: My example might have created some confusion. I have changed the example below to reflect what I want to achieve. Hope this is more clear. I am trying to define a constant in my objective-c ...
3
votes
2answers
167 views

What is the Linux equivalent to MAXDWORD?

In Microsoft Visual C++, there is a constant called MAXDWORD defined in winnt.h as follows: #define MAXDWORD 0xffffffff It's useful as a high initial value for a 'double' when one is searching ...
3
votes
3answers
163 views

C++: defining maximum/minimum limits for a class

Basically what the title says... I have created a class that models time slots in a variable-granularity daily schedule (where for example the first time slot is 30 minutes, but the second time slot ...
3
votes
4answers
272 views

How to invoke C compiler under gcc

According to my memory the following piece of code should compile fine on C++ but not in C. Only problem is how to test it? It compiled fine with g++ and also with gcc. I'm assuming that g++ is C++ ...
3
votes
4answers
303 views

Converting from “foo<T>” to “const foo<const T>” - C++

I have a function like (please don't care about returning temporary by reference. This is just an example to explain the problem), const foo<const int>& get_const() { foo<int> f; ...
2
votes
3answers
84 views

How to declare a constant array in class with constant class variable?

How to declare a constant array in class with constant class variable? Is it possible. I don't want dynamic array. I mean something like this: class test { const int size; int array[size]; ...
2
votes
4answers
110 views

c++ const symbols inflating linked file

In C++ is legal to put a const in the header file, usually the C way would be to put the extern declaration in the header and the definition in just one compilation unit, but in C++, the former ...

1 2 3