The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
22 views

Const correctness and boost::serialization::make_binary_object

I am working on a piece of code that uses boost serialization to persist state. Having a class that has a const_char* member, I looked around to discover that make_binary_object would suit my needs. ...
0
votes
3answers
70 views

Const objects with reference semantics

I have a class that the user uses to interface with a system. This class uses Pimpl to hide its internals, so its only actual member is a reference to the real, hidden object that does all the work. ...
1
vote
2answers
66 views

C++ const correctness vulerability or unintended usage?

I am missing something or const-correctness doesn't work quite as intended with pointers (or perhaps smart pointers since that is what I've tested?). Anyway, here is what I observed with trying out a ...
2
votes
2answers
69 views

C++ Only Allow a member variable to be set once

It's been a while since I've jumped into C++ but I want to make sure I'm sticking to best practices when I do, including being const-correct. I'm currently building a library of code for a game ...
4
votes
1answer
66 views

Initializing non-const parameter with string literal

So I have this code: class ConstTest { public: explicit ConstTest(char* name) {} }; int main() { ConstTest t("blarghgh"); } It obviously compiles, even though I thought that it shouldn't. ...
4
votes
1answer
76 views

When and how should I use `const` and `immutable` in D?

In many modern languages const correctness should be used to clarify interfaces and intent as well as to provide some opportunities to the compiler to optimize. In D there's the cool feature of really ...
0
votes
1answer
167 views

binary '[' : no operator found which takes a left-hand operand of type 'const std::map<_Kty,_Ty>'

I don't know where the error is coming from. It seems like I'm passing valid data into the [ ] operator. template <class VertexType> typename map< Vertex<VertexType>, int ...
4
votes
1answer
120 views

Are reference members good practice? Are const members?

A coworker and I are debating whether const or reference members are ever the right thing to do. const and reference members make a class noncopyable and unmovable unless you write your own copy and ...
2
votes
3answers
49 views

c++ assign value to a const QList in if… else

I would like to assign a value to a const QList depending on the value of a pointer. invar is a pointer, if it is NULL I want to assign a first value to const QList mylist, if it is not NULL, ...
0
votes
2answers
62 views

C++ pass-by-non-const-reference method inside pass-by-const-reference method

I have this function pass_by_const(const std::string& s) which wants to call pass_by_non_const(std::string& s). If I have this method's definition pass_by_const(const std::string& s) { ...
1
vote
2answers
76 views

Is the “this” pointer always const?

Let X be a class with member function f(). this is an implicit argument for f(), it is of type X* const. Then, if f() const is a const member function, the type for the this pointer is now const X* ...
46
votes
5answers
1k views

Write-Only pointer type

I'm writing software for an embedded system. We are using pointers to access registers of an FPGA device. Some of the registers are read-only, while others are write-only. The write-only ...
0
votes
2answers
66 views

Qt QList C3892: cannot assign to a variable that is const

I have const correctness issue with QList. I have a method getValue whose signature i cannot change returning const double and here double vs = MinInput->getValue(0, 0); vs is const. I would ...
0
votes
1answer
67 views

C++ QList const correctness [duplicate]

I would like to fill in a QList<double> with const double values. These const double are returned by a method which i am not to change. How to do it simply ?
5
votes
3answers
121 views

Const correctness — C API shim layer

What are the relevant practices for ensuring const-correctness when writing classes that serve as wrappers to other library (C style) APIs. I was in the process of writing a class (Renderer) that ...
8
votes
7answers
458 views

Can an object know its own constness?

With decltype and std::is_const the constness of a variable can be externally detected. But is it also possible for an object to know its own constness? Usage should be like: #include ...
1
vote
3answers
65 views

Why am I allowed to call this->deviceContext->map() from a const member function?

I don't understand why this is allowed: void Renderer::UpdateTextureFromArray(unsigned int* colors, unsigned int size, TextureData* textureData) const { D3D11_MAPPED_SUBRESOURCE ms; ...
4
votes
1answer
83 views

inout-parameter - replace one const-handle with another

In an object, I have an array of const-handles to some object of another specific class. In a method, I may want to return one of this handles as an inout-parameter. Here as a simplified example: ...
1
vote
2answers
130 views

Array of const void * pointers and Visual C++

I have a problem with defining an array of const void * pointers in ths code snippet - Visual C++ complains about whatever combination I try: void *call_func_cdecl(void *func, const void *const ...
0
votes
2answers
71 views

How to have non-const access to object held by a container when the container is const in C++

I have a relationship between two classes and some additional functional code illustrated in the below example. The MiddleMan class holds a couple of containers of pointers to DataObject class ...
1
vote
1answer
84 views

Const correctness in C++ when using a C library

Currently I am working on an application in C++ which I want to be const correct. Meaning using const on parameters wherever possible, and stuff like that. However, this C++ application makes use of ...
5
votes
1answer
131 views

const correctness and shared_ptr, a matter of design?

I recently started trying to enforce const correctness in my code. In a function definition, I feed a constant pointer to a constant object of the class LorentzM: void ...
2
votes
1answer
51 views

Const method to temporarily change object

I have a class Reader which provides access to a binary file to perform read operations on it. This file contains several lists of offsets within the same file, where data is to be found. This means ...
2
votes
3answers
268 views

const correctness for structs with pointers

I have a struct which contains some pointers. I want the value of these to be unmodifiable. But simply writing const infront doesn't make the structs members unmutable typedef struct{ int *x; int ...
5
votes
4answers
109 views

Const-correctness and hardware writes

Say I have the following member function: void CFoo::regWrite( int addr, int data ) { reg_write( addr, data ); // driver call to e.g. write a firmware register } Clearly, calling this function ...
6
votes
1answer
313 views

Why doesn't shared_ptr<A> implicit convert to shared_ptr<A const>?

I tried to introduce some const correctness (actually functional paradigms) to some new code and found that I cannot pass an std::shared_ptr<A> to a function that expects an std::shared_ptr<A ...
32
votes
4answers
2k views

What is the reason behind cbegin/cend?

I wonder why cbegin and cend were introduced in C++11? What are cases when calling these methods makes a difference from const overloads of begin and end?
9
votes
1answer
209 views

Const-correctness in C

Apparently it's good practice to use const unless something is meant to be mutable, but how far do you go? If I have an array of strings, should my function signature include this? char const * const ...
1
vote
2answers
124 views

Const array pointer to const values

If I create a global array of const values, e.g. const int SOME_LIST[SOME_LIST_SIZE] = {2, 3, 5, 7, 11}; is it possible for SOME_LIST to be modified in any way? How can I write this such that ...
7
votes
1answer
139 views

Const correctness in C# with rich types

Coming from a C++ background and trying to learn C#, one of the most frustrating language omissions that I've come across is an equivalent to the const keyword. So, I have been attempting to settle ...
0
votes
2answers
140 views

Is there anything like a std::value_wrapper parallel to std::reference_wrapper?

(UPDATE: This question stems from an implementation of a wrapper class passed by value for an object that has different meanings for const Foo and Foo, a move based entirely on strong opinions from ...
2
votes
3answers
379 views

boost::optional not letting me reassign const value types

It seems to me there should be four variants of boost::optional optional<Foo> => holds a mutable Foo and can be reassigned after initialization optional<Foo const> const => holds a const ...
20
votes
5answers
683 views

Does this code subvert the C++ type system?

I understand that having a const method in C++ means that an object is read-only through that method, but that it may still change otherwise. However, this code apparently changes an object through a ...
0
votes
2answers
98 views

Does const-correctness matter with short inline functions?

I have written two short tests and compiled both with "g++ -S" (gcc version 4.7 on Arch Linux): test1.cpp inline int func(int a, int b) { return a+b; } int main() { int c = func(5,5); ...
2
votes
4answers
78 views

Force external function to be const

Here is my problem. I made a class with a member function declared as const that uses an external function that I cannot modify (declared in someone else's code) and that is not declared const. More ...
0
votes
3answers
107 views

Do class member reference variables have in-built “const-correctness”?

struct A { int &r; A (int &i) : r(i) {} void foo () const { r = 5; // <--- ok } }; The compiler doesn't generate any error at r = 5;. Does it mean that &r is already ...
2
votes
4answers
1k views

C++ Overloading Conversion Operators

I am trying to have a class that allows implicit casting to certain built in types, like unsigned long int and since I'm trying to do this as correct as possible (this is my first important project in ...
7
votes
6answers
950 views

What is meaning of a pointer to a constant function?

Pointers can be declared as pointing to mutable (non-const) data or pointer to constant data. Pointers can be defined to point to a function. My coworkers and I were discussing the use of "const" ...
6
votes
6answers
268 views

Why there is no concept of “const-correctness” for class's static member functions?

Use case: class A { static int s_common; public: static int getCommon () const { s_common; }; }; Typically this results in an error as: error: static member function ‘static int ...
1
vote
2answers
136 views

C++ const-correctness and const members [duplicate]

Possible Duplicate: Does const-correctness give the compiler more room for optimization? During the last few weeks, I have developed a thing for making all my non-static members const if ...
3
votes
4answers
187 views

Undefined behavior when passing a pointer to a function with a formal parameter of pointer to const?

I have been working on some code that is similar to the following: typedef struct { unsigned char x; unsigned short y; unsigned char[NUM_DEFINED_ELSEWHERE]; } My_Struct; static My_Struct ...
0
votes
5answers
174 views

Single class which combines const and nonconst reference data member

Here's a set of C++ classes which implement a kind of adapter pattern: #include <iostream> class Cfoo { public: explicit Cfoo(int i):i_(i){} void SetI(int i){ i_ = i; } int ...
1
vote
3answers
239 views

Undefined behavior when adding a const with const_cast?

This question is regarding the behavior I observed while using const_cast for making a char * const char *. I am aware that this casting is done implicitly and t working for me when the cast is being ...
1
vote
0answers
179 views

issues with const correctness using boost::fusion::map

I'm writing some classes that use boost::fusion::map. Bellow you find a simplified code: template <typename ObjDef> struct Object { typedef typename ...
1
vote
1answer
423 views

const correctness with smart pointers

I'm trying to understand better how does const-correctness work and more specifically, when dealing with classes whose members are based on containers and smart pointers. I guess that the ...
5
votes
3answers
137 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
114 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 ...
4
votes
4answers
179 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(); ...
11
votes
5answers
262 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 ...
1
vote
4answers
646 views

How to call a non-const method from a const method?

I've got a const method in my class, which cannot be changed to non-const. In this method, I need to call a non-const method but the compiler doesn't let me do that. Is there any way around it? Here ...

1 2 3