Const is a qualifier used to define a data storage area (object, field, variable, parameter) that "never changes", thus allowing extra code generator optimizations and additional static checking of program correctness.

learn more… | top users | synonyms (1)

2
votes
1answer
43 views

How to get a non-const top element from priority_queue with user-defined objects?

std::priority_queue::top returns a constant value. However, I would like to remove the top element from the priority queue and be able to modify it somewhere else. priority_queue<SomeClass, ...
1
vote
0answers
30 views

non-const references as function arguments [duplicate]

I have written the following code . I worte two functions increase and constincrease which take class references as input . constincrease takes it as constant while increase is simpler and allows it ...
0
votes
2answers
57 views

Programming practice char * pointer to const or array to const

I know that following is bad programming practice char * p1 = "myBad" ; The above is bad as const "myBad" memory is getting pointed by non Const pointer . Compilers allow p1 as to support ...
5
votes
2answers
113 views

making c++ variables const

I love "const". I wish every variable and method that "ought to be const" IS "const". The problem is that whether a variable or method "ought to be const" depends on methods/variables further down ...
0
votes
1answer
94 views

Is there any way to “reconst” a nonconst char?

Say I have a char or a char array that is not consted. I modify it, etc. Then I want to later turn off all modifications after. Is there any way to reconst a char? This question came when i was ...
1
vote
2answers
59 views

pointer to a const pointer to an int

Can some one explain me a point in my following program The following program i wrote to understand what is meant by int * const * var; #include "iostream" using namespace std ; int main(){ int ...
1
vote
4answers
76 views

How to create a std::map of constant values which is still accessible by the [] operator?

I need a std:map data structure that is read only, which means I have to fill it once with data and then only read those values, never change them or add additional ones. My non-const version looks ...
0
votes
1answer
42 views

Explanation of the UB while changing data

I was trying to demonstrate to a work pal that you can change the value of a constant-qualified variable if really wants to (and knows how to) by using some trickery, during my demostration, I've ...
1
vote
1answer
37 views

A const data member [duplicate]

So I have a class which has a const string data member. the string itself in received from the user. how do I write a constructor that can use it and how do i get the string from the user and put it ...
0
votes
2answers
32 views

Cellular automaton doesn't make new cells

I'm trying to make a program that is able to create every kind of cellular automatons, such as Conway's game of life and everything else too. The graphic implementation works perfectly already, so I ...
0
votes
5answers
54 views

Correct sscanf() prototype, “int sscanf ( const char * s,const char * format, …);” or int sscanf (char * s,const char * format, …);? [closed]

Here is the prototype for the sscanf() function as described in the cplusplusreference(link) : int sscanf ( const char * s, const char * format, ...); But I find something fishy about it.Not only ...
1
vote
6answers
62 views

C++ Java static final equivalent

I am using C++ to program a chess game. I want to create two class attributes for the class Board: ROWS and COLUMNS. In Java, I would declare they as static final and everything would work as I want. ...
2
votes
3answers
72 views

Why aren't we allowed to use even global const qualified variables in switch-case?IBM support portal hints we can

Huh it's getting so muddy.The following IBM Support Portal link seems to suggest that the reason we can't use const qualified variables as real constants is because their life-time is not the same as ...
3
votes
1answer
69 views

Why am I being allowed to use a const qualified variable as an array size in C?

When I run the following code,it works fine for C: #include<stdio.h> int main(void) { const int x=5; char arr[x]; printf("%d",sizeof(arr)); } But not only had I read before that const ...
1
vote
1answer
25 views

C++ Enum over multiple files, or automatic unique constants over multiple files

In c++ is there any way to automatically generate constants over multiple files at compile time? Just like how an enum has constants automatically generated in a single file, but the constants must ...
0
votes
2answers
56 views

Accessing a const value from an instance in C#

I need to access a const class value in an instance of that class, without knowing the type of the class, and also be able to access it on the class itself. How can I do this? Example of what I want ...
0
votes
1answer
34 views

C++ Error when declare Get Method const

problem with const in C++... MyVektor[i].getName().getFirstName() generates error: (see code below) Error 1 error C2662: 'Name::getFirstName' : cannot convert 'this' pointer from 'const Name' to ...
1
vote
2answers
21 views

Defining const in precompiled header — How to avoid duplication

So I want to use CocoaLumberjack and am trying to insert the ddLogLevel const in my .pch file: #if DEBUG static const int ddLogLevel = LOG_LEVEL_VERBOSE; #else static const int ddLogLevel = ...
5
votes
3answers
100 views

Subscripting a reference to const

I'm here looking at some C++ code and am not understanding something. It is irrelevant but it comes from a YARP (robot middleware) tutorial which goes with the documentation. virtual void ...
3
votes
3answers
78 views

Difference in passing const &object vs. const object

Suppose you have a function like this one bool verifyObject(const myObj& obj); or this one bool verifyObject(const myObj obj); As far as I understand, when you pass something like in the ...
0
votes
3answers
61 views

What does the prototype “const int* foo(int)” mean,especially in contrast to “int* foo(int)”?I understand the second only [duplicate]

I know that int* foo(int) prototype means that foo is a function that takes an integer argument and returns a pointer to an integer.But what does the following mean? const int* foo(int); I tried ...
0
votes
2answers
54 views

What exactly does “const int *ptr=&i” mean?Why is it accepting addresses of non-constants?

Your answers are very much sought to clear this major lacuna in my understanding about const that I realized today. In my program I have used the statement const int *ptr=&i; but haven't used any ...
1
vote
1answer
39 views

Can I provide readonly access to an OpenCV matrix?

I have a class which combines a number of OpenCV's cv::Mat matrices. Is there any way I can provide both const accessors allowing clients to read but not write to the underlying data, and non-const ...
0
votes
2answers
69 views

Why are we allowed to change values of “const” qualified variables?Why pointers are allowed for this,but not assignment?

Consider the following 2 programs prog1 and prog2.Here if I try to change the value of the const qualified variable i using a pointer ptr,I get the warning( not error) "initialization discards ...
1
vote
3answers
75 views

const pointer to const data and c++ lists

I want to insert some elements to the list. What I really want to do is to use "insert3" because it guarantee that the pointer won't change, and the data won't change. But "insert2" and "insert3" give ...
-8
votes
1answer
51 views

A few questions for C++ [closed]

I recently took the CS106B Stanford programming abstractions course independently (using iTunes U). I am about to finish the course and happened to have some unsolved issues/questions. I'll be happy ...
2
votes
1answer
49 views

Why const_cast is not modifying the value in caller function?

For below snippet, #include <iostream> using namespace std; void fun(const int *p) { int *q = const_cast<int *>(p); *q = *q * 10; cout<<"q: "<<q<<"\t Value: ...
5
votes
3answers
83 views

Check/modify iterator “constness”

I have two and a half closely related questions. Given an STL iterator-type passed as a template parameter: How to determine whether the type corresponds to a const- or non-const iterator? ...
1
vote
1answer
55 views

C++ std:vector< T* const>

i have to continue a programm. The programmer before me used the structure a lot: std:vector< T* const> He wrote ist in Visual Studio C++ 2010 and was able to compile this. I am using g++ and ...
1
vote
1answer
43 views

Constant pointers in header files

I have previously encountered the following problem and have been subconsciously avoiding it ever since but have never fully understood why it is happening. Could someone explain to me what is wrong ...
1
vote
1answer
27 views

While it is impossible to create a constant property, is there a way to avoid breaking DRY-rule when working with constant fields?

For example I have a couple of constants that have different values in each of derived classes. I want to use these values in the methods of base class (say to initialize some non-static fields in the ...
1
vote
6answers
97 views

Allocations for #define and const

Say I am having a macro #define MSG "Input your first name" and a const const char* const msg = "Input your last name" or const std::string msg = "Input your last name" in the same program. ...
0
votes
2answers
57 views

Why I am able to modify const variable through classes and not in plain code. C++

When I write this code fragment, after modifying the value of const variable i through pointer I am getting value of i as 10, but when i print *ptr i get 110. const int i = 10; int *ptr = ...
0
votes
3answers
56 views

return a read-only pointer from the int pointer in C++

I have been asked in an assignment to implement IntList, which is dynamic int array list having "int *p" as its private member. After implementing all the methods (add, find, delete, etc) , I couldn't ...
1
vote
2answers
92 views

C++ struct - Passing const as this argument discards qualifiers

So, I'm trying to make a struct TileSet and override the < operator, and then put TileSet's in a priority queue. I've read that I can't call non-const methods on a const reference, but there ...
1
vote
1answer
53 views

How could I use a non constant value to instantiate multiple objects of a class?

For example, I'm coding a battle simulator and I want to instantiate an object for each turn (every Turn object holds a value relating to the current turn number and the Unit object the turn belongs ...
1
vote
2answers
70 views

How to store constant 2D array in C++ class with virtual access?

I have to put few megabytes of data in two-dimensional arrays in C++ code (embed it in DLL), diffrent datasets for each subclass. I defined virtual accessor methods to access constants to specified ...
0
votes
3answers
34 views

static const member inizialitazion in template class

In file SomeClass.h #ifndef SOME_CLASS_H_ #define SOME_CLASS_H_ #include <iostream> using std::cout; using std::endl; template <class T, class P> class SomeClass { public: ...
1
vote
1answer
35 views

Compile VB.NET project with different #Const by running a single compile.bat file?

I can manually do this (without a single problem) to compile my VB.NET code into my stand-alone WindowsForms executable. But is there a way to do this all from a command-line script? I've checked ...
-2
votes
4answers
41 views

Constant class and function [closed]

I need to write a new method. The following code is given: const Class * func() const; But what does it mean when both the class and the function are declared constant?
0
votes
2answers
57 views

Why does CUBLAS use const pointers for parameters?

e.g., cublasStatus_t cublasSgemm(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, ...
0
votes
3answers
40 views

How to initialize a static const set<string> in implementation file?

Dear C++ users! My initialisation of a static const set<string> appears to be incorrect, I'd appreciate your guidelines on this: obj.h: class obj { ... private: static const ...
0
votes
1answer
51 views

Define const object in a header file

I have a question concerning the const keyword in C++. I have the following class: Foot.h class Foot { public: Foot (bool isRightFoot); const Vector internFootAxis; const Vector ...
0
votes
3answers
44 views

Use value of string for wide string when declaring constants in C++

Using defines I am able to declare a wide string that uses the value of regular string as follows: #define MY_STRING "my value" #define MY_WIDE_STRING L"" MY_STRING How can I achieve the same but ...
1
vote
4answers
91 views

What is meant by *const*a in c++

I am having a blocking trouble trying to figure out what it meant by the following 2 lines. following is a method declaration declared by gsoap and I am confused as to how I should define the ...
4
votes
1answer
116 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 ...
0
votes
1answer
70 views

const char* not found in map find

I have a small program, I am trying to search for a particular string in the map, I get correct result if I pass static const string "us" to find but it doesn't work if I copy a string to pointer. I ...
1
vote
0answers
14 views

Getter using refernces and returning a constant variable

I have the following question: I define a class containing a private vector of (my) objects - i.e.: vector<myOtherClass> myVector; Then I would like to define a getter method which should not ...
6
votes
6answers
109 views

Const correctness with objects containing shared_ptr

Consider the object: class Obj { public: Obj() : val(new int(1)) {} int& get() {return *val;} const int& get() const {return *val;} private: ...
1
vote
5answers
105 views

Is there a difference between const char * const and char []?

Consider the two following lines of code: const char *ptr = "Hello"; char arr[] = "Hello"; For the pointer definition, the "Hello" string literal is essentially immutable, but the ptr variable ...

1 2 3 4 5 35