Tagged Questions

Constants in programming are definitions whose value is fixed throughout a program's execution. Literals in most languages are constants, for example. In referentially transparent programming styles, all definitions are constant.

learn more… | top users | synonyms (1)

166
votes
21answers
17k 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?
155
votes
10answers
94k 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, ...
104
votes
5answers
14k 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 ...
40
votes
4answers
2k views

Why isn't String.Empty a constant?

In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.
38
votes
26answers
2k views

Weird constants [closed]

I've seen these in real code: #define SCREEN_DIMENSIONS 2 #define THREE_THOUSAND_FIVE_HUNDRED_TWENTY_TWO 3522 What is the weirdest constant you've ever seen? P.S. And of course my favorite in ...
32
votes
8answers
783 views

What's the reasoning behind putting constants in if statements first?

I was looking at some example C++ code for a hardware interface I'm working with and noticed a lot of statements along the following lines: if ( NULL == pMsg ) return rv; I'm sure I've heard people ...
31
votes
3answers
10k 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 ...
27
votes
22answers
16k 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 ...
26
votes
9answers
12k views

“static const” vs “#define” in c

Which one is better to use among the below statements in c: static const int var=5; or #define var 5
24
votes
5answers
3k 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 ...
22
votes
8answers
8k views

What is the difference between char s[] and char *s in C?

In C, I can do like this: char s[]="hello"; or char *s ="hello"; so i wonder what is the difference? I want to know what actually happen in memory allocation during compile time and run time.
22
votes
7answers
9k views

Is it better in C++ to pass by value or pass by constant reference?

Is it better in C++ to pass by value or pass by constant reference? I am wondering which is better practice. I realize that pass by constant reference should provide for better performance in the ...
21
votes
6answers
6k views

PHP Constants Containing Arrays?

This failed: define('DEFAULT_ROLES', array('guy', 'development team')); Apparently, constants can't hold arrays. What is the best way to get around this? define('DEFAULT_ROLES', 'guy|development ...
20
votes
2answers
699 views

Pros and Cons of Interface constants

PHP interfaces allow the definition of constants in an interface, e.g. interface FooBar { const FOO = 1; const BAR = 2; } echo FooBar::FOO; // 1 Any implementing class will automatically ...
20
votes
10answers
1k views

An efficient way to compute mathematical constant e

The standard representation of constant e as the sum of the infinite series is very inefficient for computation, because of many division operations. So are there any alternative ways to compute the ...
19
votes
3answers
2k views

C# using consts in static classes

I was plugging away on an open source project this past weekend when I ran into a bit of code that confused me to look up the usage in the C# specification. The code in questions is as follows: ...
18
votes
7answers
10k views

Creating a constant Dictionary in C#

What is the most efficient way to create a constant (never changes at runtime) mapping of strings to ints? I've tried using a const Dictionary, but that didn't work out. I could implement a ...
16
votes
6answers
712 views

correct idiom for std::string constants?

I have a map that represents a DB object. I want to get 'well known' values from it std::map<std::string, std::string> dbo; ... std::string val = map["foo"]; all fine but it strikes me ...
16
votes
2answers
7k views

Where's the best place to define a constant in a Ruby on Rails application?

In a Ruby on Rails 2.3.2 application, where is the best place to define a constant? I have an array of constant data that I need available across all the controllers in my application.
16
votes
4answers
8k views

What is the best way to handle constants in Ruby when using Rails?

I have some constants that represent the valid options in one of my model's fields. What's the best way to handle these constants in Ruby?
15
votes
5answers
711 views

Why has Python decided against constant references?

Note: I'm not talking about preventing the rebinding of a variable. I'm talking about preventing the modification of the memory that the variable refers to, and of any memory that can be reached from ...
14
votes
4answers
337 views

How to compile a resource into a binary in Haskell?

Say I have a dictionary.txt file, I need to read it into a map and use it in my program, how can I make this dictionary.txt file contained in the compiled exe file?
14
votes
2answers
4k views

Where/How to code Constants in Rails 3 Application

I am interested in doing this the "Rails Way" on a new application. I would also like to refer to constants in some sort of context to make the code more readable. I have an application where a user ...
14
votes
8answers
747 views

Type-inferring a constant in C#

In C#, the following type-inference works: var s = "abcd"; But why can't the type be inferred when the variable is a constant? The following throws a compile-time exception: const var s = "abcd"; ...
14
votes
4answers
3k views

In Delphi 7, why can I assign a value to a const?

I copied some Delphi code from one project to another, and found that it doesn't compile in the new project, though it did in the old one. The code looks something like this: procedure ...
13
votes
2answers
4k views

Can't get rid of “this decimal constant is unsigned only in ISO C90” warning

I'm using the FNV hash as a hashing algorithm on my Hash Table implementation but I'm getting the warning in the question title on this line: unsigned hash = 2166136261; I don't understand why this ...
13
votes
5answers
5k views

Can I get CONST's defined on a PHP class?

I have several CONST's defined on some classes, and want to get a list of them. For example: class Profile { const LABEL_FIRST_NAME = "First Name"; const LABEL_LAST_NAME = "Last Name"; ...
13
votes
2answers
3k views

VB.NET: What's the suffix (type character) for “Byte” numeric constants?

Just out of curiosity: I know I can tell the compiler if I want a value to be interpreted as a certain numeric type, e.g. as Integer (32 bit signed) this way appending an "I" (type character) to the ...
13
votes
6answers
9k views

How do I use constants from a Perl module?

If I define a constant in a Perl module, how do I use that constant in my main program? (Or how do I call that constant in the main program?)
12
votes
5answers
256 views

Making sense of where “const” goes in a declaration

I am having trouble finding an intuitive pattern for the way const is used in declarations in the C and C++ languages. Here are some examples: const int a; //Const integer int const a; //Const ...
12
votes
6answers
3k views

Include constant in string without concatenating

Is there a way in PHP to include a constant in a string without concatenating?
12
votes
5answers
4k 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. ...
11
votes
5answers
460 views

How to force GCC to put constants in memory instead of generating them?

I have a lot of constant arrays defined in several functions. Something like the following: const float values[4] = {-4312.435f, -432.44333f, 4.798, 7898.89}; After inspecting gcc assembler ...
11
votes
4answers
3k views

Ruby on Rails: Where to define global constants?

I'm just getting started with my first Ruby on Rails webapp. I've got a bunch of different models, views, controllers, and so on. I'm wanting to find a good place to stick definitions of truly ...
11
votes
6answers
1k views

Why is there no Constant keyword in Java?

I was trying to identify the reason behind the "CONSTANTS" in Java I have learnt that Java allows us to declare constants by using final keyword. My question is why didn't Java introduce Constant ...
11
votes
8answers
2k 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 ...
11
votes
4answers
825 views

What is the significance of starting constants with 'k'?

I'm teaching myself Objective-C and I noticed in a lot of books and examples the use of 'k' and camel-casing in constant definition, e.g. #define kMyConstant 0 What is the significance of the 'k'? ...
10
votes
3answers
166 views

PHP string constants overuse?

I have two particular cases where I disagree with a coworker, whether constants should be used or not. We use a homemade framework working roughly like Symfony 1.x. Initial code was, in a routing ...
10
votes
2answers
350 views

Why doesn't a Java constant divided by zero produce compile time error? [closed]

Possible Duplicate: Is 1/0 a legal Java expression? Why does this code compile? class Compiles { public final static int A = 7/0; public final static int B = 10*3; public ...
10
votes
3answers
1k views

How to reference constants in EL?

How do you reference an constants with EL on a JSP page? I have an interface Addresses with a constant named URL. I know I can reference it with a scriplet by going: <%=Addresses.URL%>, but how ...
10
votes
10answers
723 views

Why use constants in programming? [closed]

I've just been going back over a bit of C studying using Ivor Horton's Beginning C book. I got to the bit about declaring constants which seems to get mixed up with variables in the same sentence. ...
10
votes
14answers
615 views

What is the point of a constant in C#

Can anyone tell what is the point of a constant in C#? For example, what is the advantage of doing const int months = 12; as opposed to int months = 12; I get that constants can't be changed, ...
10
votes
3answers
421 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 ...
10
votes
5answers
4k views

Objective C - Why do constants start with k

Why do constants in all examples I've seen always start with k? And should I #define constants in header or .m file? I'm new to Objective C, and I don't know C. All tutorials and books assume you know ...
10
votes
3answers
17k views

Defining a constant in objective-c

I want to define a constant in objective-c. Previously I had the following function: +(NSString *) getDocumentsDir { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , ...
10
votes
5answers
513 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 ...
9
votes
4answers
437 views

Using Constants in Perl

I am trying to define constants in Perl using the constant pragma: use constant { FOO => "bar", BAR => "foo" }; I'm running into a bit of trouble, and hoping there's a standard way of ...
9
votes
14answers
502 views

The Benefits of Constants

I understand one of the big deals about constants is that you don't have to go through and update code where that constant is used all over the place. Thats great, but let's say you don't explicitly ...
9
votes
5answers
429 views

non-integral constants

I want a header file with a non-integral constant in it, e.g. a class. Note the constant does not need to be a compile-time constant. static const std::string Ten = "10"; This compiles but is ...
9
votes
2answers
655 views

C# - are all Enum constants?

Are all Enum enumerations constants? Do they get converted to their value at compile-time, or at run-time?

1 2 3 4 5 19