1
vote
4answers
167 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;
…
1
vote
5answers
130 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 …
2
votes
6answers
170 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 …
6
votes
7answers
818 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 } …
1
vote
2answers
171 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
201 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 …
6
votes
6answers
212 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 c …
-1
votes
1answer
62 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
0
votes
2answers
289 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 = sel …
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 p …
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?)
3
votes
10answers
948 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 ke …
0
votes
4answers
88 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, …
16
votes
6answers
673 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.
0
votes
3answers
179 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 arr …
