1
vote
3answers
85 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
63 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
312 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
182 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
143 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'
…
-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
2
votes
6answers
219 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
195 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
236 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
217 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 …
0
votes
2answers
345 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
…
0
votes
4answers
93 views
PHP parse error when referencing a string
I have the following constant defined in my PHP script:
define("MODULE_PATH", "D:\\modules\\");
Whenever I try and assign the constant to a variable or as a function argument, I get a PHP parse …
0
votes
3answers
252 views
Can I use a Perl constant in the glob operator?
I'm parsing XML files with something like:
while (<files/*.xml>) { ... }
I want to use a constant to 'files', say
use constant FILES_PATH => 'files';
while (<FILES_PATH/*.xml>) { …
0
votes
3answers
192 views
How can I make this declaration work?
EDIT: I also got an answer to make sector a vector of vectors:
vector<vector<char>>sector;
and that gets rid of the rest of my errors.
EDIT: I've made sector an array of pointers as …
