0
votes
3answers
100 views
Using & (addressof) with const variables in C
Text books say that & (addressof) operator doesn't apply to cannot be applied to expressions,
constants, or register variables.
Does constants mean only literals like 'A', '7' etc or variables …
3
votes
13answers
390 views
Memorable 32-bit value as a constant
I am looking for a memorable 32-bit value to be used as a constant. If possible, it should be somewhat funny too.
So far, I have come up with these two:
0xcafebabe
0xdeaddad
Can you please …
1
vote
4answers
109 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?
2
votes
3answers
26 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 …
6
votes
3answers
188 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 …
1
vote
3answers
98 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 constants or vice …
2
votes
3answers
95 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?
5
votes
4answers
93 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. …
-1
votes
3answers
93 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;
$code_directory = …
6
votes
8answers
287 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 …
0
votes
3answers
51 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 connection information, …
1
vote
1answer
39 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 constants to see if it needs …
0
votes
1answer
42 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 used quite often …
2
votes
7answers
389 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
0
votes
6answers
117 views
How do I use member functions of constant arrays in C++?
Here is a simplified version of what I have (not working):
prog.h:
...
const string c_strExample1 = "ex1";
const string c_strExample2 = "ex2";
const string c_astrExamples[] = {c_strExample1, …
