Tagged Questions
167
votes
21answers
18k views
What is the difference between const and readonly?
What is the difference between const and readonly and do you use one over the other?
34
votes
3answers
11k views
Why Can't I Have “public static const string S = ”STUFF"; In My Class
When trying to compile my class I get an error:
The constant 'NamespaceName.ClassName.CONST_NAME' cannot be marked static.
at the line:
public static const string CONST_NAME = "blah";
I ...
10
votes
5answers
515 views
Why doesn't C# offer constness akin to C++?
References in C# are quite similar to those on C++, except that they are garbage collected.
Why is it then so difficult for the C# compiler to support the following:
Members functions marked ...
8
votes
3answers
884 views
How to name a constant in Objective-C?
What's the naming convention for constants in Objective-C (or most widely used way to name them)?
Is there a different criteria for extern constants?
Some styles I have seen:
NSString* const ...
7
votes
4answers
869 views
Can I use string concatenation to define a class CONST in PHP?
I know that you can create global constants in terms of each other using string concatenation:
define('FOO', 'foo');
define('BAR', FOO.'bar');
echo BAR;
will print 'foobar'.
However, I'm getting ...
6
votes
6answers
311 views
Are string literals const?
Both GCC and Clang do not complain if I assign a string literal to a char*, even when using lots of pedantic options (-Wall -W -pedantic -std=c99):
char *foo = "bar";
while they (of course) do ...
6
votes
6answers
1k views
Declaring a Const Variable in R
I'm working in R, and I'd like to define some variables that I (or one of my collaborators) cannot change. In C++ I'd do this:
const std::string path( "/projects/current" );
How do I do this in the ...
6
votes
5answers
3k views
Why does C# not allow const and static on the same line?
Why does C# not allow const and static on the same line? In Java, you must declare a field as 'static' and 'final' to act as a constant. Why does C# not let you declare const's as final?
I make ...
5
votes
4answers
700 views
How to declare a constant Guid in C#?
Is it possible to declare a constant Guid in C#?
I understand that I can declare a static readonly Guid, but is there a syntax that allows me to write const Guid?
5
votes
7answers
188 views
Is there any benefit to declare a constant in a local scope in C#?
Is there any benefit to declare a local variable as "const" if I know that I won't be chaning its value?
Thanks,
5
votes
8answers
2k views
C++ best way to define cross-file constants
I am working on a game and have an interesting question. I have some game-wide constant values that I want to implement in one file. Right now I have something like this:
constants.cpp
extern const ...
4
votes
5answers
307 views
casting non const to const in c++
I know that you can use <const_cast> to cast a const to a non-const.
But what should you use if you want to cast non-const to const?
4
votes
3answers
375 views
Significance of const keyword positioning in variable declarations
What is the significance of the positioning of the
const
keyword when declaring a variable in Objective-C, for example:
extern const NSString * MY_CONSTANT;
versus
extern NSString * const ...
3
votes
1answer
166 views
Delphi: Declaring constant record type containing constant arrays
I have many constant arrays that do not all have the same number of elements.
To store these arrays, I have declared an array type large enough to store (or reference?) every element of the largest ...
3
votes
2answers
143 views
Java multiple arguments dot notation
I've just acknowledged dot notation for method declaration with multiple arguments
like this:
public function getURLs(URL... urls){
for(int i = 0; i < urls.length; i++){
// walk ...
3
votes
3answers
83 views
Perl: Is Single Evaluation on Constants Guaranteed?
Third Perl question from me in two days. Some will say I'm not researching hard enough, although I will say I'm helping keep the section active :P Either way, I'm pondering out loud in hope for an ...
3
votes
3answers
2k views
When to use a private constant?
Is it right to use a private constant in the following situation:
Say I have a game with a lives variable and a startingLives variable. At the start of the game I set the lives variable to equal the ...
2
votes
4answers
115 views
c++ const symbols inflating linked file
In C++ is legal to put a const in the header file, usually the C way would be to put the extern declaration in the header and the definition in just one compilation unit, but in C++, the former ...
2
votes
4answers
130 views
What is a constant reference? (not a reference to a constant)
A pretty theoretical question...Why constant references do not behave the same way as constant pointers and I can actually change the object they are pointing to? They really seem like another plain ...
2
votes
6answers
330 views
C++ “const” keyword explanation
When reading tutorials and code written in C++, I often stumble over the const keyword.
I see that it is used like the following:
const int x = 5;
I know that this means that x is a constant ...
2
votes
3answers
269 views
Why are there defined constants and declared constants in CPP?
Why are there two ways to "declare" constants in CPP?
Which is better, or should I write, which of them should I use when?
#define MYCON 100
const int MYCON=100
1
vote
6answers
117 views
Is it possible to set const using a user-input?
When programming in C, is it possible to set a const with a value of a user-input?
If so, how?
1
vote
4answers
121 views
A variable that is read-only after assignment at run-time?
Fairly new programmer here, and an advance apology for silly questions.
I have an int variable in a program that I use to determine what the lengths of my arrays should be in some of my structures. I ...
1
vote
1answer
65 views
phpunit abstract class constant
I'm trying to find a way to test a abstract class constant that must exist and match/not match a value. Example:
// to be extended by ExternalSDKClild
abstract class ExternalSDK {
const VERSION = ...
1
vote
4answers
159 views
Derive a static class in C#
I know that, in theory, you can not (and should not) derive static classes in C# but I have a case in which I think I need it... I wanted to define a number of static constants for class A and, as I ...
1
vote
1answer
183 views
How to create const arrays of instances of a class, within that class?
I'm creating my own PHP class. I want to have constant references within that class of instances of that class, like an enumeration.
I keep getting 2 errors:
1. Constants cannot be arrays
2. parse ...
1
vote
3answers
190 views
const to non-const c++
is this possible:
changing a constant variable to non-constant
I am making a whole new string class and my constructor looks like this
LString(const char string1[]) {/* whatever I do */}
I ...
1
vote
2answers
1k views
How can I concatenate a constant and a variable and store it in a class constant with PHP?
class My_class
{
const STATUS_ERROR = 0;
const STATUS_OK = 1;
const DB_TABLE = TABLE_PREFIX . 'class_table';
}
The two status consts work fine and can be accessed within class methods as ...
0
votes
3answers
78 views
Why declare a constant pointer using the const keyword when the reference (const pointer) is available?
For example:
I could make a constant pointer, which points to an object that I can change through my pointer. The pointer cannot be reassigned:
MyObj const *ptrObj = MyObj2
Why would I use this ...
0
votes
3answers
68 views
Is it appropriate to declare a non-static constant data member inside a class while coding?
data member inside a class can be const but only if its static.
otherwise we need to have a constructor to initialize a constant inside a class.
can we declare a const data member inside a class? ...
0
votes
7answers
388 views
How to convert a `const char *` to simply `char *`?
I'm using the pdCurses library and am aiming to only really use strings in my C++ console game but the curses mvinstr() function or any insert function requires a non-const char * as a parameter.
...
0
votes
2answers
120 views
Object property constants in ECMAScript?
I've seen some proposals for ECMAScript Harmony in terms of being able to specify constants with the keyword const. However, it seems to be only available in block scopes (i.e., FunctionBody and ...
0
votes
2answers
248 views
VB.NET Is there a way to create a pre-processor constant that behaves as a simple text substitution?
VB.NET 2010, .NET 4
Hello,
I would like to do (something like) the following:
\#Const T = "Byte()"
Public Class MyClass
Inherits SomeGenericClass(Of T)
.. other code ..
End Class
And have ...
0
votes
2answers
111 views
Trying to assign new value to a constant
This is extracted from my module:
When trying to assign a new value to a constant after it's initialization the compiler issues (only) a warning message.
This is not correct in C99 but my module ...
0
votes
3answers
270 views
Why is const throwing an error on multiple runs of the code when inside an if() or try{}catch(e){}?
I'm trying to declare a bunch of constants using const. My problem is that testing the code in the Firebug console throws an error complaining about the 'redeclaration of const foo'.
I've attempted ...
0
votes
3answers
139 views
How can I list all the const properties defined in a class
How can i list all the names (and values) of public (and private / protected) const defined in a class ?
public class Layers {
public const BACKGROUND:String = "background";
public const ...
0
votes
4answers
116 views
consts and other animals
Hello
i have a cpp code wich i'm having trouble reading. a class B is defined
now, i understand the first two lines, but the rest isn't clear enough.
is the line "B const * pa2 = pa1" defines a const ...
0
votes
5answers
318 views
Looping a Const Char
I need to loop a const char, and I've used a simple example of string loop:
const char *str;
for(int i = 0; i < 10; ++i)
{
str += " ";
}
But when I tried to compile, I got this:
...
0
votes
2answers
318 views
Help loading contstants stored in serialized array using eval() and constant()
DISCLAIMER:
Please read carefully as this is NOT a question about storing arrays in constants or simple eval() or serialize() techniques. This IS a question primarily about how constants work in PHP ...