5
votes
5answers
160 views
Is there a runtime benefit to using const local variables?
Outside of the ensuring that they cannot be changed (to the tune of a compiler error), does the JIT make any optimisations for const locals?
Eg.
public static int Main(string[] a …
0
votes
4answers
87 views
Variably modified array at file scope
I want to create a constant static array to be used throughout my Objective-C implementation file similar to something like this at the top level of my ".m" file:
static const int …
8
votes
9answers
369 views
How much memory does a constant take in C?
when doing like this:
const int a = 5;
I wonder if a will get 4-byte of memory just like a variable ? (in 32 bit system)
1
vote
1answer
77 views
Why doesn’t gcc allow a const int as a case expression?
I was looking at this SO question and got to thinking about const ints versus #defines and realized I don't actually understand why the compiler can't deal with this. Could someone …
7
votes
12answers
694 views
C++ const keyword - use liberally?
In the following C++ functions:
void MyFunction(int age, House &purchased_house)
{
...
}
void MyFunction(const int age, House &purchased_house)
{
...
}
Which i …
0
votes
4answers
172 views
How to deal with initialization of non-const member in const object?
Let's say you have a class
class C
{
int * i;
public:
C(int * v):i(v) {};
void method() const; //this method does not change i
void method(); //this …
2
votes
3answers
180 views
C: const vs no const ..how come this compiles?
I have a simple C function which I declare as:
int strLen(const char* str_)
{
str_ = (char*) 0;
return 0;
}
I was very surprised that that compiles! Why is that?
Whereas th …
2
votes
6answers
193 views
Should useless type qualifiers on return types be used, for clarity?
Our static analysis tool complains about a "useless type qualifier on return type" when we have prototypes in header files such as:
const int foo();
We defined it this way becau …
1
vote
8answers
216 views
How do I escape the const_iterator trap when passing a const container reference as a parameter
I generally prefer constness, but recently came across a conundrum with const iterators that shakes my const attitude annoys me about them:
MyList::const_iterator find( const MyLi …
0
votes
7answers
172 views
const char * as a function parameter in C++
NOTE: I know there are many questions that talked about that but I'm still a beginner and I couldn't understand the examples.
I got a function prototype that goes like this:
int …
0
votes
4answers
159 views
initializing a const multidimensional array in c++
I'm currently working through some exercises in a c++ book, which uses text based games as its teaching tool. The exercise I am stuck on involves getting the pc to select a word fr …
0
votes
4answers
132 views
C++ : struggle with generic const pointer
I've run into some annoying issues with const-correctness in some templated code, that ultimately boils down to the following observation: for some reason, given an STL-ish Contain …
4
votes
3answers
136 views
Is type specifier required for const?
Is a type specifier required here?
const c = 7;
Bjarne Stroustrup's 'The C++ Programming Language' on page 80 says that this is illegal. However, I've been practicing some brain …
1
vote
6answers
224 views
pointer-to-const conversion in C
The following code compiles without warning on GCC but gives a warning in Visual Studio 2005.
const void * x = 0;
char * const * p = x;
x points to a constant object of unknown …
-1
votes
2answers
87 views
STL algorithms and const_iterators
Hello,
Today I wrote a small predicate to find matching symbols in a container.
But I'm faced to a problem: I want to use this predicate in a std::find_if call inside a const-met …
