1
vote
6answers
112 views
Const correctness for value parameters
I know there are few question about const correctness where it is stated that the declaration of a function and its definition do not need to agree for value parameters. This is be …
0
votes
4answers
233 views
+250
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 …
1
vote
2answers
94 views
Confused on const correctness with static array of pointers to const objects
I'm still not sure I totally get how this particular case should work out. So if I want to declare an array of NSStrings that won't change, is this correct?
static NSString * con …
5
votes
10answers
406 views
Why is const-correctness specific to C++?
Disclaimer: I am aware that there are two questions about the usefulness of const-correctness, however, none discussed how const-correctness is necessary in C++ as opposed to other …
1
vote
3answers
136 views
const pointers in STL containers
Hello fellow C++ programmers.
I have, what I hope to be, a quick question about STL containers:
std::list<std::string> l;
This statement compiles fine when used in some C+ …
1
vote
9answers
440 views
How does const correctness help write better programs?
This question is from a C# guy asking the C++ people. (I know a fair bit of C but only have some general knowledge of C++).
Allot of C++ developers that come to C# say they miss c …
2
votes
6answers
181 views
Const-correct Notifier in Observer Pattern
Hi,
I want to implement an Observer of a Model class which does not change the Model. Thus, it should be able to use a const-Reference to access the Model. But the Registering of …
5
votes
6answers
386 views
My return type is meaningless, why?
Hi,
I am working on a project and trying to define the following return type :
const MyClass * const
However I get the following warning :
Warning: #815-D: type qualifier on …
12
votes
15answers
894 views
Sell me on using const correctness
So why exactly is it that it's always recommended to use const as often as possible? It seems to me that using const can be more of a pain than a help in C++. But then again, I'm …
4
votes
3answers
388 views
How to achieve const-correctness in C#?
Hi all,
I have programmed C++ for many years but am fairly new to C#. While learning C# I found that the use of the const keyword is much more limited than in C++. AFAIK, there i …
16
votes
8answers
1k views
“const correctness” in c#
Hi,
I'm a heavy C++ user who dabbles in C# in his spare time. I'm also one of those const-correctness nazis and so not being able to do this easily in C# grates a little.
The po …
13
votes
7answers
2k 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) …
