Tagged Questions
The const tag has no wiki summary.
166
votes
21answers
17k views
What is the difference between const and readonly?
What is the difference between const and readonly and do you use one over the other?
85
votes
17answers
3k views
What's the point of const pointers?
I'm not talking about pointers to const values, but const pointers themselves.
I'm learning C and C++ beyond the very basic stuff and just until today I realized that pointers are passed by value to ...
83
votes
14answers
27k views
Are there constants in Javascript?
If not, what's the common practice for specifying variables that are used as constants?
67
votes
5answers
58k views
Convert std::string to const char* or char*
How can I convert an std::string to a char* or a const char*?
50
votes
13answers
2k views
Embarassing C++ question regarding const
My comments on this answer got me thinking about the issues of constness and sorting. I played around a bit and reduced my issues to the fact that this code:
#include <vector>
int main() {
...
45
votes
8answers
15k views
C# naming convention for constants?
private const int THE_ANSWER = 42;
or
private const int theAnswer = 42;
Personally I think with modern IDEs we should go with camelCase as ALL_CAPS smells "Hungarian". What do you think?
39
votes
8answers
964 views
Does const-correctness give the compiler more room for optimization?
I know that it improves readability and makes the program less error-prone, but how much does it improve the performance?
And on a side note, what's the major difference between a reference and a ...
36
votes
7answers
9k views
what is the difference between const int*, const int * const, int const *
I always mess up how to use it correctly. Is there a set of rules defining what you can and cannot do?
I want to know all the Do's and all DoNOTs in terms of assignments, passing to the functions, ...
33
votes
5answers
22k views
C++ static constant string (class member)
I'd like to have a private static constant for a class (in this case a shape-factory).
I'd like to have something of the sort.
class A {
private:
static const string RECTANGLE = "rectangle";
...
33
votes
25answers
9k views
Use of 'const' for function parameters
How far do you go with const? Do you just make functions const when necessary or do you go the whole hog and use it everywhere? For example, imagine a simple mutator that takes a single boolean ...
31
votes
3answers
454 views
Const correctness in C vs C++
I understand what const correctness means and my question is not about what const correctness is. So I am not expecting an explanation or C++-FAQ links for that.
My questions are:
What are the ...
31
votes
3answers
10k views
Why Can't I Have “public static const string S = ”STUFF"; In My Class
When trying to compile my class I get an error:
The constant 'NamespaceName.ClassName.CONST_NAME' cannot be marked static.
at the line:
public static const string CONST_NAME = "blah";
I ...
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.
27
votes
4answers
9k views
C++ map access discards qualifiers (const)
The following code says that passing the map as const into the operator[] method discards qualifiers:
#include <iostream>
#include <map>
#include <string>
using namespace std;
...
26
votes
8answers
4k views
How come a non-const reference cannot bind to a temporary object?
Why is it not allowed to get non-const reference to a temporary object,
which function getx() returns? Clearly, this is prohibited by C++ Standard
but I am interested in the purpose of such ...
24
votes
2answers
547 views
Isn't “const” redundant when passing by value?
I was reading my C++ book (Deitel) when I came across a function to calculate the volume of a cube. The code is the following:
double cube (const double side){
return side * side * side;
}
The ...
24
votes
4answers
816 views
const char* and char const* - are they the same?
From my understanding, const modifiers should be read from right to left. From that, I get that:
const char*
is a pointer whose char elements can't be modified, but the pointer itself can, and
...
23
votes
7answers
2k views
How do I remove code duplication between similar const and non-const member functions?
Let's say I have the following class X where I want to return access to an internal member:
class Z
{
// details
};
class X
{
std::vector<Z> vecZ;
public:
Z& Z(size_t index)
...
22
votes
5answers
2k views
How many and which are the uses of “const” in C++?
as a novice C++ programmer there are some constructs that look still very obscure to me, one of these is const. You can use it in so many places and with so many different effects that is nearly ...
21
votes
1answer
938 views
What's the point of const void?
Apparently, it is possible to declare a function returning const void:
const void foo()
{
}
g++ seems to consider the const important, because the following code does not compile:
#include ...
21
votes
4answers
444 views
declaring a const instance of a class
Let's say I have a class defined as follows:
class foo{};
now, this is perfectly acceptable;
foo f;
how come this is a compiler error? (uninitialized const âfâ)
const foo f;
Why do we have to ...
20
votes
3answers
536 views
Why does operator ++ return a non-const value?
I have read Effective C++ 3rd Edition written by Scott Meyers.
Item 3 of the book, "Use const whenever possible", says if we want to prevent rvalues from being assigned to function's return value ...
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`
20
votes
7answers
5k views
Why can't I convert 'char**' to a 'const char* const*' in C?
The following code snippet (correctly) gives a warning in C and an error in C++ (using gcc & g++ respectively, tested with versions 3.4.5 and 4.2.1; MSVC does not seem to care):
char **a;
const ...
19
votes
4answers
920 views
Why is multiple definition of a const global variable allowed in C++ and not in C?
Multiple definition of a global variable is not allowed in C or C++ due to the One Definition Rule. However, in C++ a const global variable can be defined in multiple compilation units with no error. ...
19
votes
7answers
656 views
Is the use of `const` dogmatic or rational?
In Delphi you can speed up your code by passing parameters as const, e.g.
function A(const AStr: string): integer;
//or
function B(AStr: string): integer;
Suppose both functions have the same ...
19
votes
8answers
1k views
Java's final vs. C++'s const
The Java for C++ programmers tutorial says that (highlight is my own):
The keyword final is roughly
equivalent to const in C++
What does "roughly" mean in this context? Aren't they exactly the ...
19
votes
7answers
659 views
Simplifying const Overloading?
I've been teaching a C++ programming class for many years now and one of the trickiest things to explain to students is const overloading. I commonly use the example of a vector-like class and its ...
19
votes
2answers
3k views
Why must const members be intialized in the constructor initializer rather than in its body?
Why must class members declared as const be initialized in the constructor initializer list rather than in the constructor body?
What is the difference between the two?
16
votes
1answer
167 views
Are literal numbers mutable or not?
Naturally, this won't compile:
int &z = 3; // error: invalid initialization of non-const reference ....
and this will compile:
const int &z = 3; // OK
Now, consider:
const int y = 3;
...
16
votes
2answers
183 views
Am I right in saying that const_cast followed by modification on a ref-to-const bound to a temporary is okay?
I would like to check my understanding and conclusions on this matter.
On IRC, it was asked:
Is it acceptable to const_cast a const reference that's bound to a temporary object?
Translating: ...
16
votes
4answers
575 views
What's the point of 'const' in the Haskell Prelude?
Looking through the Haskell Prelude, I see a function const:
const x _ = x
I can't seem to find anything relevant regarding this function.
What's the point? Can anyone give an example of where ...
16
votes
3answers
357 views
An union with a const and a nonconst member?
This appears to be undefined behavior
union A {
int const x;
float y;
};
A a = { 0 };
a.y = 1;
The spec says
Creating a new object at the storage location that a const object with static, ...
16
votes
6answers
4k views
C#: Can parameters be constant?
I'm looking for the C# equivalent of Java's final. Does it exist?
Does C# have anything like the following:
public Foo(final int bar);
In the above example, bar is a read only variable and cannot ...
16
votes
6answers
3k views
Deleting a pointer to const (T const*)
I have a basic question regarding the const pointers. I am not allowed to call any non-const member functions using a const pointer. However, I am allowed to do this on a const pointer:
delete p;
...
15
votes
3answers
226 views
constant arrays
This is a good old C array:
int a[10];
And this is a good old C array that is const:
const int b[10];
In C++, there seem to be two ways to define std::arrays that are const:
std::array<const ...
15
votes
4answers
395 views
Duplicate const qualifier allowed in C but not in C++?
Sample code snippet
const const const int x = 10;
int main()
{}
gets compiled in C but not in C++. Why does it get compiled in C? I thought this would fail in C as well. Never mind.
Which part ...
15
votes
4answers
360 views
Optimizing this Algorithm
After profiling my program, I have learnt that the following function is taking up 95% of my overall load, I am doing about 1,000,000 iterations per second, but ideally I'd like to see if I can push ...
15
votes
5answers
963 views
int vs const int&
I've noticed that I usually use constant references as return values or arguments. I think the reason is that it works almost the same as using non-reference in the code. But it definitely takes more ...
15
votes
7answers
391 views
14
votes
3answers
247 views
idiomatic C for const double-pointers
I am aware that in C you can't implicitly convert, for instance, char** to const char** (c.f. C-Faq, SO question 1, SO Question 2).
On the other hand, if I see a function declared like so:
void ...
14
votes
2answers
336 views
How to query a constexpr std::tuple at compile time?
In C++0x, one can create a constexpr std::tuple, e.g. like
#include <tuple>
constexpr int i = 10;
constexpr float f = 2.4f;
constexpr double d = -10.4;
constexpr std::tuple<int, float, ...
14
votes
13answers
549 views
Should I declare these methods const?
I'm working on some C++ code where I have several manager objects with private methods such as
void NotifyFooUpdated();
which call the OnFooUpdated() method on the listeners of this object.
Note ...
14
votes
1answer
472 views
Why is std::numeric_limits<T>::max() a function?
In the standard library of C++ the value std::numeric_limits<T>::max() is specified as a function. Further properties of a specific type are given as constants (like ...
14
votes
12answers
2k views
What use are const pointers (as opposed to pointers to const objects)?
I've often used pointers to const objects, like so...
const int *p;
That simply means that you can't change the integer that p is pointing at through p. But I've also seen reference to const ...
14
votes
8answers
7k views
const int vs. int const as function parameter in C++ and C
Quick question:
int testfunc1 (const int a)
{
return a;
}
int testfunc2 (int const a)
{
return a;
}
Are these two functions the same in every aspect or is there a difference? I'm interested ...
14
votes
12answers
8k views
Returning a const reference to an object instead of a copy
Whilst refactoring some code I came across some getter methods that returns a std::string. Something like this for example:
class foo
{
private:
std::string name_;
public:
std::string name()
...
13
votes
7answers
214 views
Why doesn't C++ enforce const on pointer data? [closed]
Possible Duplicate:
Why isn't the const qualifier working on pointer members on const objects?
Consider the following class that has a pointer member int *a. The const method constMod ...
13
votes
4answers
279 views
Propagate constness to data pointed by member variables
It is often quite confusing to C++ newcomers that const member functions are allowed to call non-const methods on objects referenced by the class (either by pointer or reference). For example, the ...
13
votes
8answers
1k views
Return a const reference or a copy in a getter function?
What's better as default, to return a copy (1) or a reference (2) from a getter function?
class foo {
public:
std::string str () { // (1)
return str_;
}
const std::string& ...