3
votes
3answers
37 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 …
-1
votes
3answers
88 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 …
6
votes
8answers
278 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 …
2
votes
7answers
359 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
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 …
4
votes
8answers
305 views
How to declare a static const char* in your header file?
I'd like to define a constant char* in my header file for my .cpp file to use. So I've tried this:
private:
static const char *SOMETHING = "sommething";
Which brings me wit …
3
votes
9answers
344 views
Where are constant variables stored in C?
I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?
1
vote
1answer
31 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 …
6
votes
6answers
130 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 …
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_ …
