2
votes
4answers
78 views
How to define constants in Visual C# like #define in C?
In C you can define constants like this
#define NUMBER 9
so that wherever NUMBER appears in the program it is replaced with 9. But Visual C# doesn't do this. How is it done?
6
votes
3answers
130 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 ch …
2
votes
3answers
20 views
PHP Zend Framework - Zend_Config and global state
I'm in the process of evaluating the benefits of Zend_Config_Ini versus using a simple constant file.
e.g. -
define('DB_HOST',localhost);
//versus
$config = new Zend_Config_Ini …
1
vote
3answers
93 views
using switch statements with constants or enumerations? (Which is better)? C#
HI, I've got a simple question, but one that has been bugging me for a while.
Question:
When using switch statements in C#, is it considered better practice to use enums over con …
5
votes
4answers
85 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 lik …
2
votes
3answers
90 views
Haskell minimum/maximum Double Constant
Is there any way in Haskell to get the constant that is the largest and smallest possible positive rational number greater than zero that can be represented by doubles?
-1
votes
3answers
90 views
Why doesn’t Perl recognize my constant? [closed]
I have this constant declared at the beginning of the program:
use constant LOCAL_SVN => "/local_svn";
Later in the program I try to use the constant
my $code_directory;
$co …
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?
0
votes
1answer
39 views
How to share constants between Interface Builder and the code ?
I wonder if there is a way to use constants in Interface Builder, in order to avoid manually setting the same color at different places for example (it could be a very tedious job …
6
votes
8answers
282 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 d …
0
votes
3answers
48 views
Constants or a register class?
I've come across a Registry Class and I'm wondering whether to bother with this or just go constants, or are there separate uses for site-wide global variables such as database con …
1
vote
1answer
36 views
Can I use rspec mocks to stub out version constants?
I've got code that only needs to run on a certain version of ActiveRecord (a workaround for a bug on old AR libraries). This code tests the values of ActiveRecord::VERSION constant …
4
votes
4answers
259 views
How can I define constants in a separate file in Perl?
I have a bunch of Perl files which take in some filename constants. I would like to define these in a separate file - something like a header file in C. What's the best/most standa …
0
votes
1answer
40 views
Creating public static constants in objective-c
I need to create static constants in a class that can be used by other classes that import that class.
I'm assuming that enum would be the best way to go since I have seen it been …
2
votes
7answers
377 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
