Tagged Questions

1
vote
3answers
86 views

Constant string arrays

Is it possible to have a (fixed) array which stores its elements in the read-only segment of the executable and not on the stack? I came up with this code but unfortunately it is very unflexible when …
1
vote
3answers
70 views

PHP Variable Scope

Is there a way to declare a variable so it is available in all functions. Basically I want to call: Global $varName; automatically for every function. And no, I can't use a constant. I don't think …
6
votes
8answers
326 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.
0
votes
1answer
30 views

Constant Pointer / structs

In my programming class, we have struct Time { int hours, min, sec; } We are to create a method to compute the difference between two times: Time *timeDiff(const Time *t1, const Time *t2) I …
1
vote
4answers
186 views

How is π calculated within sas?

just curious! but I spotted that the value of π held by SAS is in fact incorrect. for instance: data _null_; x= constant('pi') * 1000000000000000000000000000; put x= 32.; run; gives a π value of …
1
vote
5answers
150 views

Raising an exception on updating a ‘constant’ attribute in python

As python does not have concept of constants, would it be possible to raise an exception if an 'constant' attribute is updated? How? class MyClass(): CLASS_CONSTANT = 'This is a constant' …
6
votes
7answers
948 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 } ; }; …
2
votes
6answers
238 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 …
1
vote
2answers
199 views

C# binary constants representation

I am really stumped on this one. In C# there is a hexadecimal constants representation format as below : int a = 0xAF2323F5; is there a binary constants representation format?
1
vote
4answers
239 views

How can I create a nested hash as a constant in Perl?

I want to do, in Perl, the equivalent of the following Ruby code: class Foo MY_CONST = { 'foo' => 'bar', 'baz' => { 'innerbar' => 'bleh' }, } def some_method a = …
6
votes
6answers
218 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 …
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?)
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 …
0
votes
2answers
351 views

Ruby module with a static method call from includer class

I need to define the constant in the module that use the method from the class that includes this module: module B def self.included(base) class << base CONST = self.find end end …
-1
votes
1answer
63 views

Define some costants in a class [closed]

define some costants in a class and then use another class to print them both the classes should be in diferent package in java

1 2 3 next
15 30 50 per page