Tagged Questions

61
votes
19answers
3k 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?
15
votes
4answers
901 views

What is the purpose of Decimal.One, Decimal.Zero, Decimal.MinusOne in C#

Simple question - why does the Decimal type define these constants? Why bother? I'm looking for a reason why this is defined by the language, not possible uses or effects on the compiler. Why put …
12
votes
19answers
3k views

What is the best way to implement constants in Java ?

I've seen examples like this: public class MaxSeconds { public static final int MAX_SECONDS = 25; } and supposed that I could have a Constants class to wrap constants in, declaring them static …
10
votes
5answers
1k views

C#: static readonly vs const

I've read around about const and static readonly fields. We have some classes which contains only constant values. Used for various things around in our system. So I am wondering if my observation is …
6
votes
3answers
190 views

If you can’t change a variable’s value in Haskell, how do you create data structures?

As per the title. I have the following code which creates a binary search tree, but if I want it created and changed dynamically with user input, how would I do that if I can't change the value of a …
6
votes
8answers
288 views

In C#, what’s the best way to store a group of constants that my program uses?

I have various constants that my program uses. Some are strings, some are ints, and some are doubles. What's the best way to store them? I don't think I want an Enum, because the data is not all the …
6
votes
6answers
133 views

Constant strings address

I have several identical string constants in my program: const char* Ok() { return "Ok"; } int main() { const char* ok = "Ok"; } Is there guarantee that they are have the same address, i.e. …
6
votes
3answers
289 views

C#: Is this field assignment safe?

In this snippet: class ClassWithConstants { private const string ConstantA = "Something"; private const string ConstantB = ConstantA + "Else"; ... } Is there a risk of ending up with …
6
votes
6answers
503 views

C/C++: Optimization of pointers to string constants

Have a look at this code: #include <iostream> using namespace std; int main() { const char* str0 = "Watchmen"; const char* str1 = "Watchmen"; char* str2 = "Watchmen"; char* …
6
votes
5answers
6k views

Constants in Objective C

I'm developing a Cocoa app, and I'm using constant NSStrings as ways to store key names for my preferences. I understand this is a good idea because it allows easy changing of keys if necessary. Plus, …
5
votes
4answers
94 views

Constants in MATLAB

I've come into ownership of a bunch of Matlab code and have noticed a bunch of "magic numbers" scattered about the code. Typically, I like to make those constants in languages like C, Ruby, PHP, etc. …
5
votes
10answers
370 views

Too many constants?

Is there such a thing as too many constants in a project? What are some general rules of thumb about where the use of constants starts to become inappropriate and should be refactored? Perhaps moving …
5
votes
12answers
722 views

Java - Is This Good Programming Practice?

Hi folks, Just wondering if the following is considered to be good programming practice or not? I like to keep my individual source files as concise and uncluttered as possible, but I'm wondering …
5
votes
3answers
345 views

Why doesn’t Java have constants for well-known system property names?

The java.lang.System class defines a number of well-known properties. For example, you can obtain the JVM's temporary directory by looking up the "java.io.tmpdir" property: ... = …
5
votes
14answers
362 views

Your opinion on declaring constants inside methods…?

Hi there, A developer in a team I'm supervising prefers declaring variables as constants in his tests, e.g. const int someValue = 1; (rather than just int someValue = 1;). When I saw this I found it …

1 2 3 4 5 10 next
15 30 50 per page