Tagged Questions

0
votes
2answers
26 views

Question about Ruby on Rails, Constants, belongs_to & Database Optimization/Performance

I've developed a web based point of sale system for one of my clients in Ruby on Rails with MySQL backend. These guys are growing so fast that they are ringing close to 10,000 transactions per day …
1
vote
2answers
47 views

How to get name of the constant?

Assuming you have a constant defined in a class: class Foo { const ERR_SOME_CONST = 6001; function bar() { $x = 6001; // need to get 'ERR_SOME_CONST' } } Is it possible …
2
votes
4answers
48 views

Request for comments: python class factory for group of constant values

The following python module is meant to be a basis for "constant" handling in python. The use case is the following: one groups some constants (basically "names") that belong together with their …
1
vote
4answers
164 views

What is the best way to define string constants in an objective-c protocol?

I have defined a protocol that all my plug-ins must implement. I would also like the plug-ins to all use certain strings, like MyPluginErrorDomain. With integers this is quite easily achieved in an …
1
vote
2answers
121 views

Static String constants VS enum in Java 5+

I've read that question & answers: http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java And came up with a decision that enum is better way to implement a …
1
vote
2answers
26 views

How do I examine defined constants in PHP?

I'm stepping through the source code of CodeIgniter with Xdebug in NetBeans and I'm looking for a way to see defined constants as they are defined. If it's not possible, are there any other ways to …
1
vote
5answers
75 views

c#:How to use enum for storing string constants? [closed]

Possible Duplicate: Enum with strings is is possible to have string constants in enum like enum{name1="hmmm" name2="bdidwe"} if it is not so what is best way to do so? I tried it …
3
votes
13answers
410 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 …
5
votes
4answers
126 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. …
0
votes
2answers
31 views

PHP set current directory to class constant

I have a config file at the root directory of my project which contains a class of constants that are environment specific. The problem I'm having is how to set the current directory as the ROOT var. …
6
votes
3answers
208 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 …
0
votes
3answers
105 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 …
1
vote
3answers
108 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 …
1
vote
3answers
133 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
39 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 …

1 2 3 4 5 10 next
15 30 50 per page