Constants in programming are definitions whose value is fixed throughout a program's execution. Literals in most languages are constants, for example. In referentially transparent programming styles, all definitions are constant.
1
vote
2answers
62 views
Why doesn't my C++ program calculate more digits of 'e'?
I recently picked up the c++ programming language, and I'm trying to calculate the digits of 'e' for a Calculus Project at school. I'll paste the pgoram that I've written below. It's based on e= ...
1
vote
1answer
29 views
strange ruby behavior with a constant
Could someone explain me, why my original constant LIST from the beginning is getting manipulated at the end? I thought constant could be just once initialized. I want to store the manipulations in a ...
2
votes
3answers
50 views
What is more practical in terms of getting the value of magic constants? [duplicate]
Is it more practical to create a class named say, "Constants.java", and declare all the magic constants being use by the whole program, or put everything in properties file named ...
0
votes
1answer
10 views
replace constant in jquery instruction line
I have a select listbox and I want to select one of the list values when I load the page. I'm using the following approach and it works:
$("#mySelect").find("option[value=3]").attr("selected",true);
...
0
votes
3answers
53 views
Optional parameters: constants vs direct declaration in method? [closed]
What is the better approach for methods with optional parameters:
Declare constant and use it as default parameter:
Or declare default parameters in method:
I'm sorry for images instead of ...
0
votes
1answer
7 views
How do you define constantname for #IfDEF (VS 2010)?
I want to add conditions to show certain layout/theme based on build, for example:
I want to define a constant for 2 apps (both debug and release)
#IFDEF APP1.Debug
--- display layout 1
#IFDEF ...
2
votes
3answers
67 views
Why aren't we allowed to use even global const qualified variables in switch-case?IBM support portal hints we can
Huh it's getting so muddy.The following IBM Support Portal link seems to suggest that the reason we can't use const qualified variables as real constants is because their life-time is not the same as ...
3
votes
1answer
62 views
Why am I being allowed to use a const qualified variable as an array size in C?
When I run the following code,it works fine for C:
#include<stdio.h>
int main(void)
{
const int x=5;
char arr[x];
printf("%d",sizeof(arr));
}
But not only had I read before that const ...
-1
votes
3answers
20 views
Access constant members of one class inside another class member
I have the following classes:
class Mode{
const Enabled = 1;
const Disabled = 2;
const Pending = 3;
}
class Product{
public static $Modes = Mode;
}
I want to access constants of ...
1
vote
1answer
38 views
Can arrays inside functions be initialized with the return value of functions?Is “int arr[2]={strcmp(”a“,”a“),strcmp(”3“,”5“)};” correct?
Aren't only variables of static storage type expected not to be initialized with return values of functions as those are not considered constants?Going by that argument,isn't the following declaration ...
0
votes
2answers
50 views
What exactly does “const int *ptr=&i” mean?Why is it accepting addresses of non-constants?
Your answers are very much sought to clear this major lacuna in my understanding about const that I realized today.
In my program I have used the statement const int *ptr=&i; but haven't used any ...
0
votes
2answers
66 views
Why are we allowed to change values of “const” qualified variables?Why pointers are allowed for this,but not assignment?
Consider the following 2 programs prog1 and prog2.Here if I try to change the value of the const qualified variable i using a pointer ptr,I get the warning( not error) "initialization discards ...
0
votes
1answer
15 views
global constants in a separate file other than settings.py in django?
I expect to define a lot of constants in a project.
I don't want to pollute settings.py with them.
(as mentioned Defining Constants in Django)
Where/How do you define global constants in django other ...
0
votes
2answers
23 views
Naming constants on a boilerplate class
I'm creating a boilerplate class to use on every wordpress plugin i create . (Mods feel free to edit if "boilerplate" is not the correct way to call this). I have some constants that I use on all my ...
0
votes
1answer
26 views
PDO and constant variables [closed]
For some reason as soon as I put a constant into my query, the whole thing goes kaput (it doesn't insert the person into the database). If I take out the constant it does.
I've tested echoing out the ...
4
votes
3answers
62 views
Why is an object different inside and outside of an iteration?
I assigned a class to a constant Foo, and reassigned Foo to something else:
class Foo; end
Foo = nil
In the main environment, Foo refers to the newly assigned object:
p Foo # => nil
But, ...
1
vote
4answers
48 views
Java String array out of existing String array
I have a Java String array:
public static final String[] FIELDS_NAMES = { "Albert", "Berta", "Carl" };
public static final String[] FIELDS_NUMBERS = { "123", "456", "789" };
and would like to ...
0
votes
0answers
7 views
Notice: Use of undefined constant � - assumed '� '
Am getting the error "Notice: Use of undefined constant  - assumed ' ' in C:\wamp\www\Marketi\php\konfirmimi.php on line 94" when I run the script I built below. I checked all over on Google and ...
1
vote
0answers
56 views
How to organize a Python module with lots of constants and exceptions?
I'm writing a Python module that has only about twenty interesting types and global methods, but lots of constants and exceptions (about 70 constants for locales, 60 constants for encodings, 20 ...
2
votes
0answers
51 views
zend framework 2 constants
I am new to Zend Framework 2
I have to declare constants which are available anywhere in application.
In ZF 1 we used to declare in application.ini as constants.NAME_TITLE = "User Name",
Where and How ...
3
votes
2answers
53 views
Why is {typedef int* PTR;const PTR p=#} not equivalent to “const int* p=&num” but to “int *const p=&num”?
This thing was partly touched upon in another question on SO, but somewhat casually as it was not the main question. As my confusion still persists, I am putting it in a separate question.
Why are ...
0
votes
1answer
23 views
Typoscript Calling variables inside objects
I'm trying to get my head around typoscript variables, but my trial and error approach is proving fruitless as one slip and bam, the code will not work nor error out.
I'm looking to join two global ...
1
vote
1answer
26 views
How to get the constant value from a trait?
I defined a trait RequireLogin with a constant:
trait RequireLogin {
val message = "you should login"
if(sessionUser.isEmpty) {
Global.error(message)
throw new ...
2
votes
1answer
66 views
static const POD vs const POD
For POD local to a class member function:
Is there any reason to prefer static const int ONE = 1; or const int ONE = 1?
Is there any reason to prefer static const float HALF = (float)0.5; or const ...
0
votes
0answers
20 views
simulating early binding in javascript
Its not particularly clever but I used to use a PHP 'search/replace script' to simulate early binding of constants in any particularly perfomance sensitive pieces of javascript code.
specifically: ...
1
vote
2answers
50 views
MySQL constants table
How can I create a constants table in mysql that will match a type (using an int to differentiate among different types) with the full name of the type. The constants table should be read only and is ...
0
votes
1answer
17 views
catch constants as type string
I have a function that takes a constant as string and would like to know if it is possible to obtain the value of the constant referent.
myFunction( "FETCH_ASSOC" )
the argument is related to ...
0
votes
1answer
9 views
PHP Constant __FILE__ returns wrong path
On my new webserver it seems that the __FILE__ constant doesn't work properly.
If I open a file containing: <? echo (__FILE__); ?> under the adresse of http://www.nico-webdesign.de/test.php it ...
2
votes
4answers
47 views
Why's initializing a global variable with return value of a function failing at declaration,but works fine at file scope?
An 80k reputation contributor R.. told me on SO that we can't initialize global variables with the return value of a function as that's not considered a constant,and global variables must be ...
1
vote
1answer
50 views
Access C constants (header) from JNI (Java Native Interface)
how do I access constants defined in the C header file from Java side (through JNI)?
I have a C library with this header file c_header.h:
// I'll try to get these values in java
#define PBYTES 64
...
3
votes
2answers
58 views
Perl Constant seems not to work
I have this:
use constant JAR_FILE => qr/\.jar$/;
my @dir_list = ...;
my @jar_list;
find ( sub {
return unless -f;
return unless JAR_FILE; #THIS IS THE TROUBLED LINE
push @jar_list, ...
2
votes
1answer
86 views
Why can't Scala optimize this match to a switch?
I have this pattern match that matches only on Byte values but when I add the @switch it says:
could not emit switch to @switch annotated match
What am I missing here?
Just FYI, what I have ...
1
vote
3answers
61 views
Override Java constant using Maven?
Using Maven, is it possible to override a Java constant?
Imagine I have
public static final String buildBy="Eclipse";
which when using Maven shall be changed to
public static final String ...
0
votes
2answers
51 views
What's wrong in these 5 myriad ways of declaring/initializing constant-qualified pointers?(Taken from a dubious but popular book)
My bad!!I had assumed that the following excerpt from a notorious yet wildly popular book is totally valid C.But only today I was pointed out that it's ridden with UB (though I am yet to find how come ...
1
vote
1answer
21 views
spl_autoload_register() throws a undefined constant notice
I might have set this code up wrong, but it works perfectly when error_reporting is set to E_ALL & ~E_NOTICE.
function load_fw_phpClass($fw_phpClass_name){
...
-1
votes
2answers
23 views
000WebHost T_CONSTANT_ENCAPSED_STRING error on Line 4 [closed]
syntax error, unexpected T_CONSTANT_ENCAPSED_STRING
I get that error, here is my code:
Well, first here's the line #: dbc.php on line 4
<?php
define ("DB_HOST", "mysql11.000webhost.com""); ...
5
votes
3answers
112 views
Is “const int x = get();” legal in C?Can we assign a function's return value to a constant at declaration?
A highly reputed contributor "R.." on this forum explicitly told me this 2 days back:
Initializers for objects of static storage duration must be constant expressions. The result of a function call ...
3
votes
2answers
42 views
Using constants in a PDO connection string and calling a function with a PDO connection [closed]
I'm having problems with using constants in a PDO connection and when calling a function containing a PDO connection.
I'm using the function to connect the the DB only when needed. On pages where no ...
1
vote
1answer
43 views
android - strings.xml vs static constants
Here's what I'm thinking:
The strings on strings.xml should be use for the layouts (xml) to use. And static constants are for codes (.java) to use.
When it comes to best practices, I'd like to know ...
0
votes
1answer
123 views
Why cant i define a constant and than use it in a function in Haskell?
element ::Int->Int->[[Int]]-> Int
element z s m= m!!z!!s
maxIndex :: Int
maxIndex = 6
matrix :: [[Int]] -> Int -> Int -> Int -> Int
matrix a row column ...
0
votes
1answer
17 views
Iterating back folders to find wp-config.php
I have a php script which is executed outside the scope of Wordpress, however I need to use a Wordpress-constant defined in wp-config.php. I want to make the script platform indenpendant.
My script ...
0
votes
1answer
74 views
Using constant memory with struct array in CUDA
I try to pass struct array to constant memory, but I have same problems. First of all, my struct is:
#define point_size 1024
struct Point {
short x;
short y;
Point (short xx, short yy){
...
0
votes
4answers
40 views
Constant Definition within Constant Definition in C
I'm trying to use a constant definition in another constant definition like so:
#define ADDRESS 5002
#define FIND "foundaddress ADDRESS"
But this includes ADDRESS in the FIND constant when I want ...
0
votes
2answers
116 views
Best practices for avoiding literal string constants in Python? [closed]
While other programming languages have a strict policy on avoiding repeating string literals in code I find it weird that in Python so often string literals are used instead of 'constants'.
For ...
0
votes
1answer
68 views
Passing a class constant in param
I've a very little problem in java. I think i'm not still really awake.
I have two classes:
The first one use constants from a jar (example : Highgui.CV_LOAD_IMAGE_COLOR). In the second one the user ...
0
votes
1answer
66 views
Pass pointers to objects by constant reference in C++
I'm doing a practical assignment for university and I've run into a problem.
I've got a class that declares this method:
bool graficarTablero(const Tablero *&tablero, const string ...
0
votes
0answers
24 views
Resolving constants in ruby 1.9.3 and after
I have some constants in a module that I'd like to test:
module Stuff
Foo = #...
Bar = #...
#...
end
In rspec, running on ruby 1.9.2 and before, I'd use extend so I could avoid giving the ...
0
votes
2answers
46 views
Coding Standards for Android
I have a constant value as shown below in my code.
static final int CONNECTION = 20000;
I need to maintain a xml file for constant values as we have for strings(string.xml)
(or an alternate way to ...
0
votes
1answer
42 views
VB.NET: Get dynamically value of constants
If have got the following definitions of constants:
Protected Const Xsl As String = "Configuration.Xsl"
Protected Const Form As String = "Settings.Form"
Protected Const Ascx As String = ...
2
votes
1answer
66 views
Change AppID using [Code] just before the installation in Inno Setup
In a setup I give the user the option to install either a 32 or 64 bit version using radio buttons.
I then want to append either '_32' or '_64' to the AppID.
I know I can change the AppID using ...





