2
votes
7answers
295 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
1answer
28 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 …
4
votes
8answers
239 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
281 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?
0
votes
6answers
105 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_ …
6
votes
6answers
123 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
1answer
23 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 …
1
vote
3answers
54 views
Single file/class to store constants in ASP.NET
I have a ASP.NET web application which has more than 100 pages. Each page is using some common values ( ex : current USDoller rate) .This can be changed at any time. Now I want to …
4
votes
5answers
236 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 …
2
votes
2answers
47 views
PHP security question: store connection details in constants or private properties?
The title should say it all really - I was wondering if it's better to store connection variables as constants (because they can't be changed) or as private properties (because the …
1
vote
6answers
75 views
quoting constants in php: “this is a MY_CONSTANT”
I want to use a constant in php, but i also want to put it inside double quotes like a variable. Is this at all possible?
define("TESTER", "World!");
echo "Hello, TESTER";
obvio …
4
votes
7answers
188 views
Does Perl have something similar to PHP’s constant()?
I have done some digging through perldoc and the O'Reilly books but haven't found any way to do this. Am I relegated to using something like Readonly?
UPDATE:
I have nothing aga …
0
votes
1answer
29 views
Android RadioButton return a constant?
I am trying to perform a rating system, where with the choices to select from returns a constant number so I can insert a value into a database. My intentions are to have 3 choices …
0
votes
1answer
67 views
Java - Eclipse: Externalize Strings ?
It looks like the "Externalize Strings" feature takes everything, makes a Messages class, and a .txt file in which to store the Strings themselves. This is interesting, but I've go …
1
vote
4answers
90 views
c++ global constants issue
We have these set of "utility" constants defined in a series of file. The problem arises from the fact that TOO MANY files include these global constant files, that, if we add a co …
