Tagged Questions
The const-correctness tag has no wiki summary.
40
votes
8answers
4k views
“const correctness” in C#
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 point of const-correctness ...
39
votes
8answers
966 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 ...
27
votes
16answers
2k 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 coming at this from ...
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
8answers
1k views
Is there some ninja trick to make a variable constant after its declaration?
I know the answer is 99.99% no, but I figured it was worth a try, you never know.
void SomeFunction(int a)
{
// Here some processing happens on a, for example:
a *= 50;
a %= 10;
...
15
votes
7answers
391 views
13
votes
3answers
669 views
Can const-correctness improve performance?
I have read numerous times that enforcing const-correctness in your C or C++ code is not a good practice with regards to maintainability, but also it may allow your compiler to perform optimizations. ...
12
votes
7answers
251 views
Is it worth to insert `const`-correctness
I'm currently confronted with a C++ project written by some senior programmers consisting of about 400 files and 200 classes.
The code is well elaborated, works fine and stable.
While I'm adding ...
12
votes
9answers
1k 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 programming ...
11
votes
5answers
195 views
How would a heap-allocated const object differ from non-const one?
In C++ it is possible to allocate a const object on heap:
const Class* object = new const Class();
const_cast<Class*>( object )->NonConstMethod(); // UB
so that attempt to write into an ...
10
votes
1answer
192 views
Trailing return types, decltype and const-ness
I was merily experimenting with the new trailing return types, where I hit a problem with this (simplified) code
#include <list>
class MyContainer{
std::list<int> ints;
auto begin( ...
10
votes
6answers
610 views
Can a heap-allocated object be const in C++?
In C++ a stack-allocated object can be declared const:
const Class object;
after that trying to call a non-const method on such object is undefined behaviour:
const_cast<Class*>( &object ...
9
votes
2answers
207 views
const-correctness and the safe bool idiom
I have another question related to the safe bool idiom:
typedef void (Testable::*bool_type)() const; // const necessary?
void this_type_does_not_support_comparisons() const {} // const ...
9
votes
1answer
299 views
Why do g++ and MS Visual Studio C++ execute the following code differently?
I am having trouble understanding which complier is at fault here (if any). The following code is exectued differently of g++ compared with MS Visual Studio C++.
#include <iostream>
int main() ...
9
votes
4answers
800 views
Logical const in D
D has two types of constness: immutable variables are ones that were declared immutable, and always will be immutable, while const variables are simply read only versions of an object.
Logical const ...
9
votes
4answers
1k views
Is “const LPVOID” equivalent to “void * const”?
And if so, why some Win32 headers use it?
For instance:
BOOL APIENTRY VerQueryValueA( const LPVOID pBlock,
LPSTR lpSubBlock,
LPVOID * lplpBuffer,
PUINT puLen
);
A bit more ...
8
votes
8answers
389 views
How to call a non-const function within a const function (C++)
I have a legacy function that looks like this:
int Random() const
{
return var_ ? 4 : 0;
}
and I need to call a function within that legacy code so that it now looks like this:
int Random() ...
8
votes
5answers
588 views
C++ Pass By Const Reference and Return By Const Reference
I'm trying to understand if there is any benefit to returning a const reference. I have a factorial function that normally looks like this:
unsigned long factorial(unsigned long n)
{
return (n == ...
8
votes
4answers
423 views
Is it a good practice to free memory via a pointer-to-const
There are many questions discussing the details of C and C++ dealing with pointer-to-const deletion, namely that free() does not accept them and that delete and delete[] do and that constness doesn't ...
8
votes
12answers
783 views
How to generate a non-const method from a const method?
While striving for const-correctness, I often find myself writing code such as this
class Bar;
class Foo {
public:
const Bar* bar() const { /* code that gets a Bar somewhere */ }
Bar* bar() {
...
8
votes
2answers
1k views
How to achieve const-correctness in C#? [closed]
Possible Duplicate:
“const correctness” in C#
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 ...
7
votes
7answers
215 views
is it good practice to add const at end of member functions - where appropriate?
Is it a good practice, in C++, to add const at the end of a member function definition every time the function does not modify the object, i.e., every time the function is 'eligible' for const?
I know ...
7
votes
6answers
217 views
Modifying a const through a non-const pointer
I'm a bit confused what happened in the following code:
const int e = 2;
int* w = ( int* ) &e; // (1) cast to remove const-ness
*w = 5; // (2)
cout << *w ...
7
votes
3answers
379 views
Why am I getting an error converting a ‘float**’ to ‘const float**’?
I have a function that receives float** as an argument, and I tried to change it to take const float**.
The compiler (g++) didn't like it and issued :
invalid conversion from ‘float**’ to ‘const ...
7
votes
6answers
348 views
When should a member function have a const qualifier and when shouldn't it?
About six years ago, a software engineer named Harri Porten wrote this article, asking the question, "When should a member function have a const qualifier and when shouldn't it?" I found it to be the ...
7
votes
5answers
316 views
Does it ever make sense to make a fundamental (non-pointer) parameter const?
I recently had an exchange with another C++ developer about the following use of const:
void Foo(const int bar);
He felt that using const in this way was good practice.
I argued that it does ...
7
votes
5answers
308 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 because the constness ...
6
votes
5answers
176 views
Should I declare any method that can be const a const method
Simple question. Should I declare any method that can be const a const method? This includes methods that don't return any member variables, or return const references to member variables. Is there ...
6
votes
8answers
362 views
std::vector of objects and const-correctness
Consider the following:
class A {
public:
const int c; // must not be modified!
A(int _c)
: c(_c)
{
// Nothing here
}
A(const A& copy)
: c(copy.c)
{
...
6
votes
6answers
338 views
How to return a 'read-only' copy of a vector
I have a class which has a private attribute vector rectVec;
class A {
private:
vector<Rect> rectVec;
};
My question is how can I return a 'read-only' copy of my Vector?
I am thinking of ...
6
votes
6answers
1k views
Why is my return type meaningless?
I am trying to use a return type of const MyClass * const. However, I get a warning:
Warning: #815-D: type qualifier on return type is meaningless.
Is this not a valid type? I want a pointer ...
5
votes
3answers
101 views
What are the use cases for having a function return by const value for non-builtin type?
Recently I have read that it makes sense when returning by value from a function to qualify the return type const for non-builtin types, e.g.:
const Result operation() {
//..do something..
...
5
votes
2answers
241 views
C++ avoiding code duplication for const and non-const visitation
I have a class that should call a visitor method for every member variable. Something like this:
class A{
int a, b, c;
public:
void accept(Visitor &visitor){
visitor.visit(a);
...
5
votes
8answers
384 views
const and no const methods in c++?
I have a program and many of its classes have some operators and methods with the keyword const like the followings:
operator const char* () const;
operator char* ();
void Save(const char *name) ...
5
votes
6answers
279 views
What's the correct way to use const in C++?
const correctness has me somewhat confused.
What rule of thumb do you use to decide when something should be const or not?
e.g. consider this example
class MyClass
{
string ToString(); // this ...
5
votes
5answers
521 views
Const method that modifies *this without const_cast
The following pattern has arisen in a program I'm writing. I hope it's not too contrived, but it manages to mutate a Foo object in the const method Foo::Questionable() const, without use of any ...
5
votes
5answers
376 views
How do I require const_iterator semantics in a template function signature?
I am creating a constructor that will take a pair of input iterators. I want the method signature to have compile-time const semantics similar to:
DataObject::DataObject(const char *begin, const ...
5
votes
8answers
772 views
How to deal with initialization of non-const reference 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(); ...
4
votes
4answers
100 views
Why is writing to a non-const object after casting away const of pointer to that object not UB?
According to C++ Standard it's okay to cast away const from the pointer and write to the object if the object is not originally const itself. So that this:
const Type* object = new Type();
...
4
votes
3answers
144 views
Const vector of non-const objects
In defining a function in an interface :
virtual void ModifyPreComputedCoeffs ( std::vector < IndexCoeffPair_t > & model_ ) = 0;
we want to specify that the vector model_ should not be ...
4
votes
4answers
392 views
Is const_cast<const Type*> ever useful?
Recently I found a piece of C++ code that effectively does the following:
char* pointer = ...;
const char* constPointer = const_cast<const char*>( pointer );
Obviously the author thought that ...
4
votes
2answers
127 views
Adding const-ness after the fact in C++ [closed]
Possible Duplicate:
Is there some ninja trick to make a variable constant after its declaration?
Consider the following minimal example:
void MutateData(std::string&);
int main()
{
...
4
votes
1answer
146 views
How do you initialise an array of const values in D2?
Essentially, I want to be able to do something like this:
struct Foo
{
const(int)[2] ints;
this(int x, int y)
{
ints = [x, y];
}
}
but this doesn't work. The compiler (DMD 2.048) just ...
4
votes
8answers
1k views
Const correctness: const char const * const GetName const (//stuff);
Labelled as homework because this was a question on a midterm I wrote that I don't understand the answer to. I was asked to explain the purpose of each const in the following statement:
const char ...
4
votes
1answer
230 views
Is this code legal in C++
I just found that when it comes to templates this code compiles in g++ 3.4.2 and works unless m() is not called:
template <typename T>
class C
{
T e;
public:
C(): e(0) {};
...
3
votes
3answers
73 views
Invoking a nonconst method on a member from a const method
I was surprised to find this "hole" in "const"ness:
#include <stdio.h>
class A
{
int r ;
public:
A():r(0){}
void nonconst()
{
puts( "I am in ur nonconst method" ) ;
r++;
}
} ...
3
votes
3answers
73 views
How to keep this const-correct without cheating the compiler?
I have a C++ class like that:
class Example {
public:
int getSomeProperty(int id) const;
private:
lazilyLoadSomeData();
}
Basically getSomeProperty() return some data ...
3
votes
4answers
214 views
Why few people type const-correct code? Will const-correct code compile better/faster? [closed]
I very often pass pointer as functions args for read-only args (e.g. structs and such). For instance in this constructor:
Chunk::Chunk(string text, COLOR * background, COLOR * foreground);
I use to ...
3
votes
3answers
216 views
struct keyword in function parameter, and const-correctness
I have an opaque type in my library defined as:
typedef struct MyOpaqueType* MyType; // easier to type for client code
I can't pass a pointer-to-const struct around using the typedef, so some ...
3
votes
2answers
248 views
Qt - QList const correctness
A QList<T *> can't easily be const-correct. Consider the function
void f(QList<T *> list)
{
list[0]->constFunction();
}
I can change f to
void f(QList<const T *> list)
...