active questions tagged constants - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:22:30Zhttp://stackoverflow.com/feeds/tag/constantshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804679/if-you-cant-change-a-variables-value-in-haskell-how-do-you-create-data-structu5If you can't change a variable's value in Haskell, how do you create data structures?Thomas King2009-11-26T16:37:15Z2009-11-26T23:07:55Z
<p>As per the title.</p>
<p>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 variable in haskell?!?</p>
<pre><code>find :: (Ord a) => Node a -> a -> Bool
find (Node val left right) s
| s == val = True
| s < val = find left s
| s > val = find right s
find Empty s = False
data Node a = Node a (Node a) (Node a)
| Empty
myTree = Node "m" (Node "a" Empty Empty)
(Node "z" Empty Empty)
</code></pre>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1805965/php-zend-framework-zendconfig-and-global-state2PHP Zend Framework - Zend_Config and global stateAndreLiem2009-11-26T22:35:15Z2009-11-26T23:01:38Z
<p>I'm in the process of evaluating the benefits of Zend_Config_Ini versus using a simple constant file.</p>
<p>e.g. -</p>
<pre><code>define('DB_HOST',localhost);
//versus
$config = new Zend_Config_Ini('/path/to/config.ini', 'staging');
echo $config->database->params->host; // prints "dev.example.com"
</code></pre>
<p>The only thing is that the $config is not globally accessible. So then you need to use Zend_Registry to store for application usage, without having to initiate each time. </p>
<p>This seems to add more complexity than needed.... am I missing something or is Zend_Config + Zend_Registry a technique that is better in the long run as an app grows?</p>
http://stackoverflow.com/questions/1799160/using-switch-statements-with-constants-or-enumerations-which-is-better-c1using switch statements with constants or enumerations? (Which is better)? C#Alex2009-11-25T18:51:37Z2009-11-25T20:50:54Z
<p>HI, I've got a simple question, but one that has been bugging me for a while.</p>
<p><strong>Question:</strong></p>
<p>When using switch statements in C#, is it considered better practice to use <code>enums</code> over <code>constants</code> or vice versa? Or is it a matter of preference? I ask this because many people seem to like using <code>enums</code>, but when you are switching on an <code>int</code> value, you have to cast each of the values contained in the <code>enum</code> to an <code>int</code>, even if you specify the type of <code>enum</code>.</p>
<p><strong>Code Snippet:</strong></p>
<pre><code>class Program
{
enum UserChoices
{
MenuChoiceOne = 1,
MenuChoiceTwo,
MenuChoiceThree,
MenuChoiceFour,
MenuChoiceFive
}
static void Main()
{
Console.Write("Enter your choice: ");
int someNum = int.Parse(Console.ReadLine());
switch (someNum)
{
case (int)UserChoices.MenuChoiceOne:
Console.WriteLine("You picked the first choice!");
break;
// etc. etc.
}
}
}
</code></pre>
<p>Is there some way you can create an instance of the <code>enum</code> and just cast the whole <code>enum</code> to an int?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1773850/constants-in-matlab5Constants in MATLABBenjamin Oakes2009-11-20T23:24:16Z2009-11-23T17:18:27Z
<p>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. When googling this problem, I found that the "official" way of having constants is to define functions that return the constant value. Seems kludgey, especially because Matlab can be finicky when allowing more than one function per file.</p>
<p>Is this really the best option?</p>
<p>I'm tempted to use / make something like the C Preprocessor to do this for me. (I found that something called <code>mpp</code> was made by someone else in a similar predicament, but it looks abandoned. The code doesn't compile, and I'm not sure if it would meet my needs.)</p>
http://stackoverflow.com/questions/1780489/haskell-minimum-maximum-double-constant2Haskell minimum/maximum Double ConstantClaudiu2009-11-23T00:04:24Z2009-11-23T02:45:25Z
<p>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?</p>
http://stackoverflow.com/questions/1750846/why-doesnt-perl-recognize-my-constant-1Why doesn't Perl recognize my constant? [closed]lamcro2009-11-17T18:31:53Z2009-11-17T20:39:41Z
<p>I have this constant declared at the beginning of the program:</p>
<pre><code>use constant LOCAL_SVN => "/local_svn";
</code></pre>
<p>Later in the program I try to use the constant</p>
<pre><code>my $code_directory;
$code_directory = $ENV{"HOME"} . SVN_DIRECTORY . $_;
</code></pre>
<p>I get the following error</p>
<p><code>Bareword "SVN_DIRECTORY" not allowed while "strict subs" in use at svn2ob.pl line 68.
Execution of svn2ob.pl aborted due to compilation errors.</code></p>
<p>The program has <code>use warnings;</code> and <code>use strict;</code> at the beginning of the program.</p>
http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly61What is the difference between const and readonly?Readonly2008-09-11T08:02:19Z2009-11-15T22:08:09Z
<p>What is the difference between const and readonly and do you use one over the other?</p>
http://stackoverflow.com/questions/1635737/how-to-share-constants-between-interface-builder-and-the-code0How to share constants between Interface Builder and the code ?Unfalkster2009-10-28T07:55:57Z2009-11-14T10:00:01Z
<p>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 sometimes...)</p>
<p>Currently I set the color in the code and use #define to setup the color, but obviously IB can't use #define...</p>
http://stackoverflow.com/questions/1724025/in-c-whats-the-best-way-to-store-a-group-of-constants-that-my-program-uses6In C#, what's the best way to store a group of constants that my program uses?Matthew2009-11-12T17:38:14Z2009-11-12T18:29:58Z
<p>I have various constants that my program uses. Some are <code>string</code>s, some are <code>int</code>s, and some are <code>double</code>s. What's the best way to store them? I don't think I want an Enum, because the data is not all the same type, and I want to manually set each value. Should I just store them all in an empty class, or is there a better way?</p>
http://stackoverflow.com/questions/1713848/constants-or-a-register-class0Constants or a register class?meder2009-11-11T08:38:39Z2009-11-11T09:30:22Z
<p>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, website URI, etc?</p>
<p>Here's the class I came across:</p>
<pre><code><?php
Class Registry {
private $vars = array();
public function __set($index, $value)
{
$this->vars[$index] = $value;
}
public function __get($index)
{
return $this->vars[$index];
}
}
?>
</code></pre>
<p>Basically just a class that has an array with magical getters/setters. Are there any disadvantages with this code as opposed to using constants?</p>
http://stackoverflow.com/questions/1698335/can-i-use-rspec-mocks-to-stub-out-version-constants1Can I use rspec mocks to stub out version constants?jes51992009-11-08T23:32:11Z2009-11-09T00:17:48Z
<p>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 to be run.</p>
<p>Is there a way to mock out those constants in rspec so I can test that code path without relying on having the right ActiveRecord gem installed on the test machine?</p>
http://stackoverflow.com/questions/1451085/how-can-i-define-constants-in-a-separate-file-in-perl4How can I define constants in a separate file in Perl?Suan2009-09-20T14:07:40Z2009-11-08T13:28:59Z
<p>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 standard way of doing this in Perl?</p>
http://stackoverflow.com/questions/1684659/creating-public-static-constants-in-objective-c0Creating public static constants in objective-cForeignerBR2009-11-06T00:40:55Z2009-11-06T00:50:28Z
<p>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 through out Cocoa classes.</p>
http://stackoverflow.com/questions/1674032/static-const-vs-define-in-c2"static const" vs "#define" in cjohn2009-11-04T14:19:24Z2009-11-05T15:36:58Z
<p>Which one is better to use among the below statements in c:</p>
<pre><code>static const int var=5;
</code></pre>
<p>or </p>
<pre><code>#define var 5
</code></pre>
http://stackoverflow.com/questions/1576489/where-are-constant-variables-stored-in-c3Where are constant variables stored in C?tsubasa2009-10-16T06:47:41Z2009-11-05T15:22:06Z
<p>I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?</p>
http://stackoverflow.com/questions/1639154/how-to-declare-a-static-const-char-in-your-header-file4How to declare a static const char* in your header file?Mark2009-10-28T18:24:33Z2009-10-29T08:47:51Z
<p>I'd like to define a constant char* in my header file for my .cpp file to use. So I've tried this:</p>
<pre><code>private:
static const char *SOMETHING = "sommething";
</code></pre>
<p>Which brings me with the following compiler error:</p>
<blockquote>
<p>error C2864: 'SomeClass::SOMETHING' :
only static const integral data
members can be initialized within a
class</p>
</blockquote>
<p>I'm new to C++. What is going on here? Why is this illegal? And how can you do it alternatively?</p>
http://stackoverflow.com/questions/1639393/how-do-i-use-member-functions-of-constant-arrays-in-c0How do I use member functions of constant arrays in C++?Paul Williams2009-10-28T19:04:09Z2009-10-28T22:19:57Z
<p>Here is a simplified version of what I have (not working):</p>
<p>prog.h:</p>
<pre><code>...
const string c_strExample1 = "ex1";
const string c_strExample2 = "ex2";
const string c_astrExamples[] = {c_strExample1, c_strExample2};
...
</code></pre>
<p>prog.cpp:</p>
<pre><code>...
int main()
{
int nLength = c_astrExamples.length();
for (int i = 0; i < nLength; i++)
cout << c_astrExamples[i] << "\n";
return 0;
}
...
</code></pre>
<p>When I try to build, I get the following error:
error C2228: left of '.length' must have class/struct/union</p>
<p>The error occurs only when I try to use member functions of the c_astrExamples.
If I replace "c_astrExamples.length()" with the number 2, everything appears to work correctly.</p>
<p>I am able to use the member functions of c_strExample1 and c_strExample2, so I think the behavior arises out of some difference between my use of strings vs arrays of strings.</p>
<p>Is my initialization in prog.h wrong? Do I need something special in prog.cpp?</p>
http://stackoverflow.com/questions/1611673/constant-strings-address6Constant strings addresszilgo2009-10-23T06:25:57Z2009-10-23T12:42:09Z
<p>I have several identical string constants in my program:</p>
<pre><code>const char* Ok()
{
return "Ok";
}
int main()
{
const char* ok = "Ok";
}
</code></pre>
<p>Is there guarantee that they are have the same address, i.e. could I write the following code? I heard that GNU C++ optimize strings so they have the same address, could I use that feature in my programs?</p>
<pre><code>int main()
{
const char* ok = "Ok";
if ( ok == Ok() ) // is it ok?
;
}
</code></pre>
http://stackoverflow.com/questions/1229047/using-constants-as-default-function-values-in-php0Using constants as default function values in PHPRosarch2009-08-04T18:04:39Z2009-10-22T10:36:47Z
<p>Is this legal?</p>
<pre><code><?php
function ftw($foo = 'pwnage', $nub = MENU_DEFAULT_VALUE, $odp = ODP_DEFAULT_VALUE) {
//lots_of_awesome_code
}
?>
</code></pre>
<p>where <code>MENU_DEFAULT_VALUE</code> and <code>ODP_DEFAULT_VALUE</code> are previously constants defined previously in the file.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1605077/single-file-class-to-store-constants-in-asp-net1Single file/class to store constants in ASP.NETShyju2009-10-22T04:53:52Z2009-10-22T05:06:55Z
<p>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 maintain this value in a single file so that i can change only her at any time to get it reflected throughtout the project.I dont want to store it in web config. I want to store it in some other place</p>
<p>Any thoughts ?</p>
http://stackoverflow.com/questions/1600102/php-security-question-store-connection-details-in-constants-or-private-propertie2PHP security question: store connection details in constants or private properties?sunwukung2009-10-21T10:59:04Z2009-10-21T11:15:55Z
<p>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 they can't be viewed). My apologies to all those who reel in horror at my lack of security nous...</p>
http://stackoverflow.com/questions/1580576/android-radiobutton-return-a-constant0Android RadioButton return a constant?aforloney2009-10-16T21:40:07Z2009-10-17T02:11:51Z
<p>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, 'Great', 'Mediocre' and 'Bad'. I would like Great to be a constant for '3', Mediocre to have a constant '2' and Bad to have a constant for '1'. I would like to insert only the numerical values if possible, any easy way to do this?</p>
<p>Anthony</p>
http://stackoverflow.com/questions/1563654/quoting-constants-in-php-this-is-a-myconstant1quoting constants in php: "this is a MY_CONSTANT"contagious2009-10-14T00:16:51Z2009-10-14T01:18:34Z
<p>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?</p>
<pre><code>define("TESTER", "World!");
echo "Hello, TESTER";
</code></pre>
<p>obviously outputs "Hello, TESTER", but what I really want is something like:</p>
<pre><code>$tester = "World!";
echo "Hello, $tester";
</code></pre>
<p>ouputs "Hello, World!".</p>
http://stackoverflow.com/questions/1558169/java-eclipse-externalize-strings0Java - Eclipse: Externalize Strings ?Rosarch2009-10-13T04:19:50Z2009-10-13T04:26:40Z
<p>It looks like the "Externalize Strings" feature takes everything, makes a <code>Messages</code> class, and a .txt file in which to store the Strings themselves. This is interesting, but I've got another way to store constants:</p>
<pre><code>public final class Constants {
//for parsing commands
public static final String REGEX_COMMAND = "(\\w*) *= *\"(.*)\""; //Regex for a command from a data file
//etc
}
</code></pre>
<p>Is there any way to get Eclipse to automatically move Strings and other values to here for me?</p>
http://stackoverflow.com/questions/1526859/does-perl-have-something-similar-to-phps-constant4Does Perl have something similar to PHP's constant()?Chris Kloberdanz2009-10-06T17:04:54Z2009-10-07T03:10:11Z
<p>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 <a href="http://search.cpan.org/perldoc/Readonly" rel="nofollow">Readonly</a>?</p>
<p><strong>UPDATE:</strong></p>
<p>I have nothing against Readonly. I just wanted to be able to do something like PHP's constant().</p>
<p>Example if Perl had constant(): </p>
<pre><code>use constant {
FIELD_EXAMPLE_O => 345,
FIELD_EXAMPLE_L => 25
};
my $var = 'EXAMPLE';
my $c = 'FIELD_' . $var . '_L';
my $value = constant($c);
# $value is 25
</code></pre>
<p>If Readonly is the best way to do it, then I shall use it.</p>
http://stackoverflow.com/questions/1519533/using-constants-for-message-keys-and-database-table-names-and-column-names2Using constants for message keys and database table names and column namesnarencoolgeek2009-10-05T11:28:36Z2009-10-06T00:46:09Z
<p>Recently there was a big debate during a code reveiw session on the use of constants.
The developers had used constants for the following purposes:</p>
<ol>
<li>Each and every message key used in the i18N application was declared as a constant. The application contained around 3000 message keys and hence the same number of constants.</li>
<li>Each and every database column name was declared as a constant. There were around 5000 column names and still counting..</li>
</ol>
<p>Does it make sense to have such a huge number of constants in any application?
IMHO, common sense should prevail. Message keys just don't need to be declared as constants. We already have one level of indirection - why add one more?</p>
<p>Reg. database column names, I have mixed opinions. If a column is being used in multiple classes, does it make sense to declare it as a global constant? </p>
<p>Please pour in with your thoughts...</p>
http://stackoverflow.com/questions/1517881/c-global-constants-issue1c++ global constants issuelee2009-10-05T01:18:01Z2009-10-05T01:49:49Z
<p>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 constant to one of those files and try to build, it builds the whole entire library, which takes up more than an hour.</p>
<p>Could anyone suggest a better way for this approach? That would be greatly appreciated.</p>
http://stackoverflow.com/questions/1249303/too-many-constants5Too many constants?Gordon Potter2009-08-08T16:41:12Z2009-10-03T16:45:54Z
<p>Is there such a thing as too many constants in a project? What are some general rules of thumb about where the use of constants starts to become inappropriate and should be refactored? Perhaps moving some of these values into a model tier, or configuration files, etc.</p>
<p>A concrete example. Using the pureMVC framework for Actionscript/Flex projects. This framework relies on the Facade pattern to store a central configuration for the application. Lots of constants can be declared in this Facade and most of the constants are mapped to commands. But in other cases there can be non command based constants. For a non trivial app there can be a lot of constants in the Facade. </p>
<p>The constants are really convenient, because they allow you search throughout your project for when a particular command or value is used. But when is the amount and type of use of constants going too far? </p>
<p>What is an inappropriate use of a constant?</p>
http://stackoverflow.com/questions/648814/direct-array-initialization-with-a-constant-value1Direct array initialization with a constant valueRauhotz2009-03-15T23:37:29Z2009-09-29T17:33:34Z
<p>Whenever you allocate a new array in C# with </p>
<p><code>new T[length]</code></p>
<p>the array entries are set to the default of T. That is <code>null</code> for the case that <code>T</code> is a reference type or the result of the default constructor of <code>T</code>, if <code>T</code> is a value type.</p>
<p>In my case i want to initialize an Int32 array with the value -1:</p>
<pre><code>var myArray = new int[100];
for (int i=0; i<myArray.Length; i++) { myArray[i] = -1; }
</code></pre>
<p>So after the memory is reserved for the array, the CLR loops over the newly allocated memory and sets all entries to default(int) = 0. After that, my code sets all entries to -1. </p>
<p>That makes the intialization redundant. Does the JIT detect this and neglects the initialization to 0 and if not, is there a way to directly initialize a portion of memory with a custom value?</p>
<p>Referring to <a href="http://stackoverflow.com/questions/136836/c-array-initialization-with-non-default-value">C# Array initialization - with non-default value </a>, using Enumerable.Repeat(value, length).ToArray() is no option, because Enumerable.ToArray allocates a new array and copies the values to it afterwards.</p>
http://stackoverflow.com/questions/1491407/php-magic-constants1PHP Magic ConstantsLizard2009-09-29T09:03:54Z2009-09-29T09:37:16Z
<p>I am trying to get the filename of the script that is running (But not the include it is calling).</p>
<pre><code>echo basename(__FILE__); # will always output include.php
echo basename($_SERVER['SCRIPT_FILENAME']);
# This will do what I want (echo myscript.php), but I was wondering if there was
# a better way to grab it, as I have had problems with $_SERVER['SCRIPT_FILENAME']
# when running certain scripts from a cron.
</code></pre>
<p>Any suggestions?</p>
<pre><code><?
#myscript.php
require('include.php');
echo "Hello all";
?>
<?
#include.php
echo basename(__FILE__);
echo basename($_SERVER['SCRIPT_FILENAME']);
?>
</code></pre>
<p>Thanks!</p>