Tagged Questions

16
votes
6answers
716 views

Why isn’t String.Empty a constant?

In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.
9
votes
8answers
2k views

Is it better in C++ to pass by value or pass by constant reference?

Is it better in C++ to pass by value or pass by constant reference? I am wondering which is better practice. I realize that pass by constant reference should provide for better performance in the …
9
votes
4answers
1k views

In Delphi 7, why can I assign a value to a const?

I copied some Delphi code from one project to another, and found that it doesn't compile in the new project, though it did in the old one. The code looks something like this: procedure …
8
votes
2answers
447 views

C# - are all Enum constants?

Are all Enum enumerations constants? Do they get converted to their value at compile-time, or at run-time?
8
votes
6answers
2k views

How do I use constants from a Perl module?

If I define a constant in a Perl module, how do I use that constant in my main program? (Or how do I call that constant in the main program?)
6
votes
8answers
343 views

What is the difference between char s[] and char *s in C?

In C, I can do like this: char s[]="hello"; or char *s ="hello"; so i wonder what is the difference? I want to know what actually happen in memory allocation during compile time and run time.
6
votes
6answers
221 views

TDD : Any pattern for constant testing ?

Constants are beautiful people - they can hold in a unique place a value that is used everywhere in your code. Changing that value requires only one simple modification. Life is cool. Well, this is …
6
votes
7answers
976 views

C++ binary constant/literal

I'm using a well known template to allow binary constants template< unsigned long long N > struct binary { enum { value = (N % 10) + 2 * binary< N / 10 > :: value } ; }; …
5
votes
6answers
378 views

Why doesn’t C# offer constness akin to C++?

References in C# are quite similar to those on C++, except that they are garbage collected. Why is it then so difficult for the C# compiler to support the following: Members functions marked …
5
votes
7answers
2k views

Creating a constant Dictionary in C#

What is the most efficient way to create a constant (never changes at runtime) mapping of strings to ints? I've tried using a const Dictionary, but that didn't work out. I could implement a …
4
votes
10answers
1k views

Is there any way to use a “constant” as hash key in Perl?

Is there any way to use a constant as a hash key? For example: use constant X => 1; my %x = (X => 'X'); The above code will create a hash with "X" as key and not 1 as key. Whereas, I want …
3
votes
4answers
325 views

In C# how do you accomplish the same thing as a #define

Coming from a C background I'm used to defining the size of the buffer in the following way: #define BUFFER_SIZE 1024 uint8_t buffer[BUFFER_SIZE]; How would you do the accomplish the same thing in …
2
votes
3answers
39 views

(In Ruby) allowing mixed-in class methods access to class constants

Hi. I have a class with a constant defined for it. I then have a class method defined that accesses that class constant. This works fine. An example: #! /usr/bin/env ruby class …
2
votes
6answers
255 views

PHP Constants Containing Arrays?

This failed: define('DEFAULT_ROLES', array('guy', 'development team')); Apparently, constants can't hold arrays. What is the best way to get around this? define('DEFAULT_ROLES', 'guy|development …
2
votes
2answers
770 views

How can I embed unicode string constants in a source file?

Hi all: I'm writing some unit tests which are going to verify our handling of various resources that use other character sets apart from the normal latin alphabet: Cyrilic, Hebrew etc. The problem I …

1 2 3 next
15 30 50 per page