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.
0
votes
2answers
39 views
error in reference qualifier
Why I cant define this function,
int *clone() const &
{
return new int(10);
}
or
int x;
int *clone() const &&
{
return new int(std::move(x)) ;
}
I should be able to add ...
0
votes
1answer
43 views
Static Const object
I'm having trouble initializing a static const struct element. I am using NTL's polynomials mod p (ZZ_pX.h) library and I have need for the following struct:
struct poly_mat {
ZZ_pX a,b,c,d;
...
3
votes
4answers
116 views
C/C++ macros instead of const [duplicate]
The macro #define MAX 80 is equivalent to const int MAX = 80; Both are constant and cannot be modified.
Isn't it better to use the macro instead of the constant integer? The constant integer takes ...
1
vote
1answer
21 views
Constants in Objective-C and “duplicate symbol” linker error
I've declared a constant with the same name in some different classes, in their .m file, this way:
@implementation MyViewController
const NSInteger numberOfItems = 6;
...
@end
But I get a ...
0
votes
2answers
38 views
what's the formal way to initialize extern const variable?
I'm using a .h file to put all the global variables in one file to make sure all files can access the same value. But i have a const int, I wonder where should I inisilize it?
.h:
#ifndef ...
0
votes
3answers
88 views
C : Using char * const pointer
In the following program, p is declared as a pointer(which is constant BUT string is not).But still the program does not work and stops abruptly saying "untitled2.exe has stopped working".
...
2
votes
4answers
78 views
C - Which is the advantage for the user of const in parameters of functions that are not pointers?
I would like to know if there is any advantage for the user when calling a function like
A) void func(int i);
or a function like
B) void func(const int i);
As inside the func the parameter i will ...
2
votes
2answers
86 views
initializing references in c++ doesn't work but initializing const references works, why?
const string& s = "rajat";
works while
string& s = "rajat";
doesn't. Why?
0
votes
1answer
22 views
can't get php const value to work in pdo initialization
I am defining constants in a class
class config {
const DB_PDO_Connect = "'mysql:host=localhost;dbname=XdbX','XuserX','XpwX'";
}
In another class I try to create a new PDO object
class user {
...
4
votes
3answers
55 views
Assignment <pointer to array of constants> = <pointer to array>: incompatible pointers
When I compile something like this
double da[ 3 ] = { 2., 3., 4. };
double (* pda)[ 3 ] = &da;
double const (* cpda)[ 3 ] = pda; // gcc: warning; MSVC: ok
gcc warns me
warning: initialization ...
3
votes
3answers
102 views
What is the difference between const and immutable in D?
What is the difference between the const and immutable type qualifiers in D?
0
votes
1answer
23 views
Error: initializer element is not constant - linux driver
I am really not able to solve this issue.
error: initializer element is not constant
error: (near initialization for tca6507_leds1.leds.num_leds)
I think the problem is related to struct ...
1
vote
2answers
52 views
Alternative to keyword mutable for member variables in C++
I have a const function in C++, from where I am calling a C function.
class ClassEx
{
A* pPointer // declaration of the pointer
};
void
ClassEx::ClassFunction() const
{
int error = ...
0
votes
1answer
42 views
static const to an object in a shared library in C++. Is it share between processes?
I've been writing a shared library in C++, but I want to share some instance of a class through users of the library. I mean, a read-only object loaded just one time from the library and used by every ...
0
votes
2answers
58 views
Why does “int *find(const vector<int> &vec, int value)” gives me a invalid conversion error?
I am new to C++ and trying to play with some examples in book "Essential C++". When I write this code from the book:
int *find(const vector<int> &vec, int value) { ... }
The g++ compiler ...
0
votes
2answers
24 views
error: invalid initialization of non-const reference of type…from a temporary of type [duplicate]
I thought I could create and populate a C++ map like this:
39 int main(){
40
41 cout << "Approximate travelling salesman path finder." << endl;
42 cout << ...
1
vote
1answer
65 views
C++ using a static const class member in a template
So I have this c++ code which I have written for c++0X. It used to compile in MSVC 2012, but now I switched to MingW64 4.8.1 because I was dissatisfied with the lack of C++11 support in MSVC. The ...
5
votes
3answers
82 views
public const doesn't override private const function?
I have a class with a header like this:
public:
const dtMeshTile* getTile(int i) const;
private:
dtMeshTile* getTile(int i);
When I try to use it like this:
const dtMeshTile* const tile ...
2
votes
1answer
38 views
Different results when casting int and const int to float
Would anyone be able to explain why int and const int give different
results when cast to float and used in floating point math? See for
example this piece of code:
int _tmain(int argc, _TCHAR* ...
2
votes
2answers
79 views
C++ Static Const Member Variable Usage
Say that I have a class that requires a few constants to function. Several member functions require use of these constants. Use of #define is frowned upon since it can cause collisions. The ...
3
votes
3answers
59 views
String as pointer vs array [duplicate]
I was wondering what the differences are between the following definitions:
// file.cpp:
namespace n
{
static char const * const str1 = "hello";
static char const str2[] = "hello";
}
Behaviors I ...
2
votes
4answers
74 views
How do I assign a data object with const members?
Hope this is not a duplicate. If so, please point me to it in a comment and I'll remove the question again.
I have a data object with data that's only valid in a bundle - i.e. there's no sense in ...
5
votes
2answers
101 views
Overloading on const and volatile- why does it work by reference?
I have the code:
#include "stdafx.h"
#include <iostream>
using namespace std;
void func(const int& a)
{
std::cout << "func(const)" << std::endl;
}
void func(volatile ...
1
vote
0answers
24 views
BOOST_STRONG_TYPEDEF of 'void * const *' will not compile
The following code, written as a minimal problematic example, fails to compile:
#include <boost/serialization/strong_typedef.hpp>
BOOST_STRONG_TYPEDEF( void * const *, my_const_iterator )
int ...
0
votes
3answers
51 views
C++ Tricky Const Reference Exam Task?
I was exercising for my Exam coming up soon and there is a tricky question:
The question is:
Whats wrong with the code and how would it be correct?
const long limit = 1000L;
long &ref = ...
0
votes
1answer
30 views
Constans variable assigned by function and used to create array C++
I use Visual Studio 2012
My target:
User give array size -> function return data to const variable -> and create array.
It is possible?
Here is my code snippets:
const int user_get_array_size()
{
...
1
vote
2answers
58 views
C# Initalizing a const variable in a method
If a method in a class has a const variable such as:
public void MyMethod()
{
const int myVariable = 5;
// blah
}
will myVariable be initialized only once (when the method is called for the ...
2
votes
1answer
66 views
dart const static fields
I was reading this answer on SO, and I was wondering why the fields are being explicitly declared as both static and const. Are const fields compile time constants in Dart? and if so doesn't that mean ...
0
votes
2answers
76 views
C++ How to replace #defines with consts
Recently I've been taking a hard look at my programming style and how to improve it. Let me begin by saying that in my current role, I'm the sole programmer. As a result, I can make things as hacky ...
0
votes
2answers
64 views
C++ const char* overloading confusion
I don't understand why this program produces the output below.
void blah(const char* ) {printf("const char*\n");}
void blah(const std::string&) {printf("const string ref\n");}
...
3
votes
2answers
212 views
Are C++11 objects potentially slower in multi-threaded environments because of the new const?
According to Herb Sutter (http://isocpp.org/blog/2012/12/you-dont-know-const-and-mutable-herb-sutter), in C++11 const methods must not alter the object bit-wise, or must perform internal ...
1
vote
2answers
67 views
“Reference qualifier correctness” or should a non-const method ever apply to rvalues?
Now that GCC 4.8.1 and Clang 2.9 and higher support them, reference qualifiers (also known as "rvalue references for *this") have become more widely available. They allow classes to behave even more ...
0
votes
3answers
31 views
Sending values to a sound driver (const void) in C
Im trying to stream values from an buffer, these values are being generated by a sine wave function
When i try to send the values to the driver i have to use this function
snd_pcm_sframes_t ...
2
votes
3answers
120 views
Pointer to a constant
#include <iostream>
using namespace std;
int main(void)
{
const int a1 = 40;
const int* b1 = &a1;
int * c1 = (int *)(b1);
*c1 = 'A';
cout<<*c1<<endl;
...
0
votes
1answer
54 views
overloaded const and non-const class methods returning references in C++ [closed]
I have a data-structure class in C++ with an accessor to some object (may be large) and I have const and non-const methods using this accessor so I need to overload it. I am looking for a critique of ...
0
votes
2answers
44 views
Array operator [] overloading const and non-const versions
I got an assignment to implement a template array class.
One of the requirement is to overload the [] operator.
I made this two const and non-const version which seems to be working fine.
const ...
0
votes
0answers
11 views
Add constant to a mock in PHPUnit
Is it possible to add a class constant to a mock using PHPUnit?
Here an example:
class SomeTest extends PHPUnit_Framework_TestCase {
public function setUp() {
$mock = $this->getMock( ...
0
votes
4answers
51 views
C# - Mark Variable As Const (Readonly)
Some of my global variables need to be initiated only once. I do it by loading a file and setting them to whatever. Now I want when I try to set a new value to this variable that an exception is ...
3
votes
1answer
42 views
Memory use of multiple identical literals vs const
In C, in terms of the amount of memory used, if there are a bunch of functions all with return 1;, is each 1 literal stored or just one 1?
I.E. would it be better to use (at file scope) static const ...
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 ...
2
votes
1answer
60 views
C2556: overloaded function differs only by return type
I am reading Effective C++ which tells me that 'member functions differing only by their constness can be overloaded'.
The book example is:
class TextBlock {
public:
const char& ...
6
votes
4answers
142 views
Wrong function prototype used by compiler?
I faced a compilation problem that I do not understand, I have simplified it a bit for explanation below.
Basically, it involves having 2 different getters (a const and non-const one) that return a ...
0
votes
1answer
55 views
C++ method only differs by 'constness' of return type (and const)
just stumbled over something I have not seen before. Consider you've had the following class:
class foo
{
const bar* get() const;
bar* get();
}
How can a client of foo decide which get() ...
1
vote
1answer
59 views
SSE: convert from const __m128 * to const float *
I'm trying to write a little SSE code but can't continue because of this error:
error C2664: '_mm_loadu_ps' : cannot convert parameter 1 from 'const __m128 *' to 'const float *'
I've to load ...
0
votes
1answer
41 views
Compiler-specific error: can't match function with const arguments
I'm pretty new to C++, so I'm trying to figure out exactly what's going on here. I'm trying to make (someone else's) code compile. It runs fine using mingw, but I'm also crosscompiling onto an ...
1
vote
2answers
25 views
Convention to define global const map
Currently I do following:
parser.h
typedef enum {
FIN = 0x80,
RSV1 = 0x40
} WS_FLAGS;
parser.c
int main() {
return WS_FLAGS.FIN;
}
what is the convention to define a global constant ...
0
votes
3answers
44 views
Cannot use header enum
I would like to do following:
parser.h
#ifndef WS_PARSER_H
#define WS_PARSER_H
#include <stdin.h>
#include <stdbool.h>
typedef enum {
FIN = 0x80;
RSV1 = 0x40
/* ... */
} ...
-2
votes
1answer
34 views
PHP OO overwrite const through extending [closed]
I got an strange thing:
<?php
class LW_Base{
const MULTIPLE = 'LW_Base';
public static function name(){
return strtolower(static::MULTIPLE);
}
}
...
0
votes
1answer
111 views
D - casting char[] to const char[]
I have to use tango.
Im reading from file a text which is an instruction into char[] table. Then I need to execute it through the mixin. The mixin as argument need string or const char[]. How can I ...
2
votes
1answer
134 views
how does const declaration set to itself work
This is the declaration for PositiveInfinity in Double.
/// <summary>
/// Represents positive infinity. This field is constant.
/// </summary>
/// ...




